Skip to content

Commit 4dc705d

Browse files
committed
Fix install of pytest-xdist on linux workers
1 parent a6f051f commit 4dc705d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci_run_tests_deps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
python -m pip install --upgrade setuptools
3737
pip install numpy==${{ matrix.numpy-version }}
3838
pip install flake8 pytest#
39-
pip install pytest-xdist
39+
pip install "pytest-xdist"
4040
if [ -f requirements_tests.txt ]; then pip install -r requirements_tests.txt; fi
4141
- name: Build package
4242
run: python -m build --wheel

.github/workflows/ci_run_tests_os.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
python -m pip install --upgrade setuptools
3333
pip install numpy
3434
pip install flake8 pytest
35-
pip install pytest-xdist
35+
pip install "pytest-xdist"
3636
if [ -f requirements_tests.txt ]; then pip install -r requirements_tests.txt; fi
3737
- name: Build package
3838
run: python -m build --wheel

0 commit comments

Comments
 (0)