From 2956031ed84d32e26395a2ce4cd83b0e6b8c52f4 Mon Sep 17 00:00:00 2001 From: alexhroom Date: Mon, 12 Aug 2024 08:09:21 +0100 Subject: [PATCH] changed os names? --- .github/workflows/unit_tests.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/unit_tests.yaml b/.github/workflows/unit_tests.yaml index 3a7408c..852d8df 100644 --- a/.github/workflows/unit_tests.yaml +++ b/.github/workflows/unit_tests.yaml @@ -34,19 +34,19 @@ jobs: auto-activate-base: false - name: Install and run tests (Linux) shell: bash -l {0} - if: runner.os == 'ubuntu-latest' + if: runner.os == 'linux' run: | sudo apt update sudo apt install xvfb libqt5x11extras5 libgl1-mesa-glx '^libxcb.*-dev' pip install . xvfb-run pytest -s tests/ -m "not slow" --cov=rascal2 --cov-report=term - name: Install and run tests (MacOS) - if: runner.os == 'macos-13' + if: runner.os == 'macos' run: | pip install . pytest -s tests/ -m "not slow" --cov=rascal2 --cov-report=term - name: Install and run tests (Windows) - if: runner.os == 'windows-latest' + if: runner.os == 'windows' run: | pip install . pytest -s tests/ -m "not slow" --cov=rascal2 --cov-report=term