Skip to content

Commit d3f6bee

Browse files
committed
Disable pytest-xdist
1 parent a12451e commit d3f6bee

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/run-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
run: |
4040
cd tests
4141
export HIVEMIND_MEMORY_SHARING_STRATEGY=file_descriptor
42-
pytest --durations=0 --durations-min=1.0 -v -n auto
42+
pytest --durations=0 --durations-min=1.0 -v
4343
build_and_test_p2pd:
4444
runs-on: ubuntu-latest
4545
timeout-minutes: 10
@@ -70,7 +70,7 @@ jobs:
7070
run: |
7171
cd tests
7272
export HIVEMIND_MEMORY_SHARING_STRATEGY=file_descriptor
73-
pytest -k "p2p" -v -n auto
73+
pytest -k "p2p" -v
7474
codecov_in_develop_mode:
7575

7676
runs-on: ubuntu-latest
@@ -100,6 +100,6 @@ jobs:
100100
- name: Test
101101
run: |
102102
export HIVEMIND_MEMORY_SHARING_STRATEGY=file_descriptor
103-
pytest --cov hivemind --cov-config=pyproject.toml -v -n auto tests
103+
pytest --cov hivemind --cov-config=pyproject.toml -v tests
104104
- name: Upload coverage to Codecov
105105
uses: codecov/codecov-action@v3

requirements-dev.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ pytest==6.2.5 # see https://github.com/pytest-dev/pytest/issues/9621
22
pytest-forked
33
pytest-asyncio==0.16.0
44
pytest-cov
5-
pytest-xdist
65
coverage==6.0.2 # see https://github.com/pytest-dev/pytest-cov/issues/520
76
tqdm
87
scikit-learn

0 commit comments

Comments
 (0)