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
15 changes: 15 additions & 0 deletions .github/workflows/syntax-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,21 @@ jobs:
done
exit "$error"

runner-tests:
name: Workflow-runner unit tests
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Install prerequisites
run: pip install pytest psutil

- name: Run the o2dpg_runner test suite
working-directory: MC/workflow_runner
run: pytest o2dpg_runner/tests -q

pylint:
name: Pylint
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
.vscode
*.pyc
o2dpg_tests/**
__pycache__/
Loading
Loading