From 1bac5a7891831e38c207b4c68627794346541ce2 Mon Sep 17 00:00:00 2001 From: Jacob Wilkins Date: Wed, 5 Mar 2025 15:09:20 +0000 Subject: [PATCH] Add gui tests to regular CI --- .github/workflows/tests.yml | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 0c19b3c4b..4a9cc2f2f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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