Unverified Commit 784ee2b8 authored by Philip Meier's avatar Philip Meier Committed by GitHub
Browse files

always run all prototype tests in CI (#6633)

parent f725901d
...@@ -39,7 +39,12 @@ jobs: ...@@ -39,7 +39,12 @@ jobs:
- name: Install test requirements - name: Install test requirements
run: pip install --progress-bar=off pytest pytest-mock pytest-cov 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 - name: Run prototype datasets tests
if: success() || ( failure() && steps.setup.conclusion == 'success' )
shell: bash shell: bash
run: | run: |
pytest \ pytest \
...@@ -49,6 +54,7 @@ jobs: ...@@ -49,6 +54,7 @@ jobs:
test/test_prototype_datasets*.py test/test_prototype_datasets*.py
- name: Run prototype transforms tests - name: Run prototype transforms tests
if: success() || ( failure() && steps.setup.conclusion == 'success' )
shell: bash shell: bash
run: | run: |
pytest \ pytest \
...@@ -58,6 +64,7 @@ jobs: ...@@ -58,6 +64,7 @@ jobs:
test/test_prototype_transforms*.py test/test_prototype_transforms*.py
- name: Run prototype models tests - name: Run prototype models tests
if: success() || ( failure() && steps.setup.conclusion == 'success' )
shell: bash shell: bash
run: | run: |
pytest \ pytest \
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment