Skip to content

Commit

Permalink
Disable pytest-xdist
Browse files Browse the repository at this point in the history
  • Loading branch information
mryab committed Jul 14, 2024
1 parent a12451e commit d3f6bee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
run: |
cd tests
export HIVEMIND_MEMORY_SHARING_STRATEGY=file_descriptor
pytest --durations=0 --durations-min=1.0 -v -n auto
pytest --durations=0 --durations-min=1.0 -v
build_and_test_p2pd:
runs-on: ubuntu-latest
timeout-minutes: 10
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
run: |
cd tests
export HIVEMIND_MEMORY_SHARING_STRATEGY=file_descriptor
pytest -k "p2p" -v -n auto
pytest -k "p2p" -v
codecov_in_develop_mode:

runs-on: ubuntu-latest
Expand Down Expand Up @@ -100,6 +100,6 @@ jobs:
- name: Test
run: |
export HIVEMIND_MEMORY_SHARING_STRATEGY=file_descriptor
pytest --cov hivemind --cov-config=pyproject.toml -v -n auto tests
pytest --cov hivemind --cov-config=pyproject.toml -v tests
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
1 change: 0 additions & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ pytest==6.2.5 # see https://github.com/pytest-dev/pytest/issues/9621
pytest-forked
pytest-asyncio==0.16.0
pytest-cov
pytest-xdist
coverage==6.0.2 # see https://github.com/pytest-dev/pytest-cov/issues/520
tqdm
scikit-learn
Expand Down

0 comments on commit d3f6bee

Please sign in to comment.