Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"name": "Python Dev Container",
"image": "mcr.microsoft.com/devcontainers/python:3.11",

"features": {
"ghcr.io/devcontainers/features/git:1": {},
"ghcr.io/devcontainers/features/github-cli:1": {},
"ghcr.io/devcontainers/features/common-utils:2": {}
},
"postCreateCommand": "pip install -r requirements.txt || echo 'No requirements.txt found'"
}
21 changes: 21 additions & 0 deletions .github/workflows/junie.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Junie
run-name: Junie run ${{ inputs.run_id }}

permissions:
contents: write

on:
workflow_dispatch:
inputs:
run_id:
description: "id of workflow process"
required: true
workflow_params:
description: "stringified params"
required: true

jobs:
call-workflow-passing-data:
uses: jetbrains-junie/junie-workflows/.github/workflows/ej-issue.yml@main
with:
workflow_params: ${{ inputs.workflow_params }}
6 changes: 6 additions & 0 deletions .junie/guidelines.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Test Execution Instructions

To run tests in this project, use the following command:
```bash
python -m unittest discover -s test -t test -p '*_test.py'
```
3 changes: 3 additions & 0 deletions JUNIE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Test Execution Instructions

To run tests in this project, use the following command: