Skip to content

Commit

Permalink
changed os names?
Browse files Browse the repository at this point in the history
  • Loading branch information
alexhroom committed Aug 12, 2024
1 parent a8fa9a8 commit 2956031
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/unit_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 2956031

Please sign in to comment.