Skip to content

Commit

Permalink
some random tests
Browse files Browse the repository at this point in the history
  • Loading branch information
atharva-2001 committed Sep 7, 2023
1 parent f5cfd50 commit 4f6e863
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ defaults:

jobs:
build:
if: github.repository_owner == 'tardis-sn'
# if: github.repository_owner == 'tardis-sn'
strategy:
matrix:
include:
Expand Down Expand Up @@ -108,6 +108,23 @@ jobs:

- name: Run tests
run: pytest tardis ${{ env.PYTEST_FLAGS }}
continue-on-error: true

- name: Run tests 2
run: pytest tardis/model tardis/plasma tardis/simulation tardis/tests ${{ env.PYTEST_FLAGS }}
continue-on-error: true

- name: Run tests 3
run: pytest tardis/simulation tardis/tests tardis/transport ${{ env.PYTEST_FLAGS }}
continue-on-error: true

- name: Run tests 4
run: pytest tardis/plasma tardis/simulation ${{ env.PYTEST_FLAGS }}
continue-on-error: true

- name: Run tests 5
run: pytest tardis/simulation tardis/plasma tardis/model ${{ env.PYTEST_FLAGS }}
continue-on-error: true

- name: Upload to Codecov
run: bash <(curl -s https://codecov.io/bash)

0 comments on commit 4f6e863

Please sign in to comment.