Skip to content
Merged
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
7 changes: 7 additions & 0 deletions .github/workflows/prototype-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,12 @@ jobs:
- name: Install test requirements
run: pip install --progress-bar=off pytest pytest-mock pytest-cov

- name: Mark setup as complete
id: setup
run: exit 0

- name: Run prototype datasets tests
if: success() || ( failure() && steps.setup.conclusion == 'success' )
shell: bash
run: |
pytest \
Expand All @@ -49,6 +54,7 @@ jobs:
test/test_prototype_datasets*.py

- name: Run prototype transforms tests
if: success() || ( failure() && steps.setup.conclusion == 'success' )
shell: bash
run: |
pytest \
Expand All @@ -58,6 +64,7 @@ jobs:
test/test_prototype_transforms*.py

- name: Run prototype models tests
if: success() || ( failure() && steps.setup.conclusion == 'success' )
shell: bash
run: |
pytest \
Expand Down