From e498b1b15d22c5b0584beef3a8852397294582fe Mon Sep 17 00:00:00 2001 From: Ishaan Desai Date: Tue, 11 Feb 2025 13:10:29 +0100 Subject: [PATCH] Remove unnecessary installation steps from the unit tests workflow (#148) --- .github/workflows/run-unit-tests.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/run-unit-tests.yml b/.github/workflows/run-unit-tests.yml index f582228..cbbd432 100644 --- a/.github/workflows/run-unit-tests.yml +++ b/.github/workflows/run-unit-tests.yml @@ -39,11 +39,8 @@ jobs: python3 -m unittest test_interpolation.py - name: Install Micro Manager and run micro simulation crash unit test - working-directory: micro-manager/ + working-directory: micro-manager/tests/unit/ run: | - pip3 install --user . - pip3 uninstall -y pyprecice - cd tests/unit python3 -m unittest test_micro_simulation_crash_handling.py - name: Install Micro Manager and run HDF5 read and write unit tests @@ -55,9 +52,6 @@ jobs: python3 -m unittest test_hdf5_functionality.py - name: Install Micro Manager and run snapshot_computation unit tests - working-directory: micro-manager/ + working-directory: micro-manager/tests/unit/ run: | - pip3 install --user .[snapshot] - pip3 uninstall -y pyprecice - cd tests/unit python3 -m unittest test_snapshot_computation.py