Skip to content

Commit

Permalink
Add gui tests to regular CI
Browse files Browse the repository at this point in the history
  • Loading branch information
oerc0122 committed Mar 5, 2025
1 parent 74f34be commit 1bac5a7
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,17 @@ jobs:
run: python -m pip install pytest pytest-timeout

- name: install MDANSE
run: (cd MDANSE && python -m pip install .)
working-directory: MDANSE
run: python -m pip install .

- name: run unit tests
run: |
cd MDANSE/Tests/UnitTests
python -m pytest
- name: Run unit tests
working-directory: MDANSE/Tests/UnitTests
run: python -m pytest

- name: Install MDANSE_GUI
working-directory: MDANSE_GUI
run: python -m pip install .

- name: Run GUI unit tests
working-directory: MDANSE_GUI/Tests/UnitTests
run: python -m pytest

0 comments on commit 1bac5a7

Please sign in to comment.