Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Matthieu Darbois <[email protected]>
  • Loading branch information
henryiii and mayeut authored Nov 17, 2024
1 parent 371426a commit 799f51e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ only_if: changesInclude('.cirrus.yml') || ($CIRRUS_BRANCH == "main" && !changesI
run_tests: &RUN_TESTS
install_cibuildwheel_script:
- python -m pip install dependency-groups
- python -m dependency_groups dev | xargs python -m pip install -e. pytest-custom-exit-code
- python -m dependency_groups test | xargs python -m pip install -e.
run_cibuildwheel_tests_script:
- python ./bin/run_tests.py

Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
install:
- if [ "${TRAVIS_OS_NAME}" == "linux" ]; then docker run --rm --privileged docker.io/tonistiigi/binfmt:latest --install all; fi
- $PYTHON -m pip install -U pip dependency-groups
- $PYTHON -m dependency_groups test | xargs $PYTHON -m pip install -e. pytest-custom-exit-code
- $PYTHON -m dependency_groups test | xargs $PYTHON -m pip install -e.

script: |
# travis_wait disable the output while waiting
Expand Down
6 changes: 3 additions & 3 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- bash: |
docker run --rm --privileged docker.io/tonistiigi/binfmt:latest --install all
python -m pip install dependency-groups
python -m dependency_groups dev | xargs python -m pip install -e.
python -m dependency_groups test | xargs python -m pip install -e.
python ./bin/run_tests.py
- job: macos_38
Expand All @@ -26,7 +26,7 @@ jobs:
versionSpec: '3.8'
- bash: |
python -m pip install dependency-groups
python -m dependency_groups dev | xargs python -m pip install -e.
python -m dependency_groups test | xargs python -m pip install -e.
python ./bin/run_tests.py --num-processes 2
- job: windows_38
Expand All @@ -38,5 +38,5 @@ jobs:
versionSpec: '3.8'
- bash: |
python -m pip install dependency-groups
python -m dependency_groups dev | xargs python -m pip install -e.
python -m dependency_groups test | xargs python -m pip install -e.
python ./bin/run_tests.py

0 comments on commit 799f51e

Please sign in to comment.