diff --git a/.circleci/prepare.sh b/.circleci/prepare.sh index 86ab4cbe..6023be5c 100644 --- a/.circleci/prepare.sh +++ b/.circleci/prepare.sh @@ -10,7 +10,7 @@ fi $PYTHON --version $PYTHON -m venv venv -venv/bin/python -m pip install -U pip dependency-groups -venv/bin/python -m dependency_groups test | xargs venv/bin/python -m pip install -e. +venv/bin/python -m pip install -U pip +venv/bin/python -m pip install -e. --group test venv/bin/python -m pip freeze venv/bin/python --version diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 723400c6..a5a7cf48 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -20,8 +20,8 @@ linux: script: - curl -sSL https://get.docker.com/ | sh - docker run --rm --privileged docker.io/tonistiigi/binfmt:latest --install all - - python -m pip install dependency-groups - - python -m dependency_groups test | xargs python -m pip install -e. pytest-custom-exit-code + - python -m pip install -U pip + - python -m pip install -e. pytest-custom-exit-code --group test - python ./bin/run_tests.py windows: @@ -35,8 +35,8 @@ windows: variables: CIBW_ENABLE: "all" script: - - py -m pip install dependency-groups - - py -m pip install -e. pytest-custom-exit-code $(py -m dependency_groups test) + - py -m pip install -U pip + - py -m pip install -e. pytest-custom-exit-code --group test - py bin\run_tests.py tags: - saas-windows-medium-amd64 @@ -50,8 +50,8 @@ macos: variables: CIBW_ENABLE: "all" script: - - python3 -m pip install dependency-groups - - python3 -m dependency_groups test | xargs python3 -m pip install -e. pytest-custom-exit-code + - python3 -m pip install -U pip + - python3 -m pip install -e. pytest-custom-exit-code --group test - python3 ./bin/run_tests.py tags: - saas-macos-medium-m1 diff --git a/.travis.yml b/.travis.yml index d2082cc1..7b3160a1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -64,8 +64,8 @@ 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. +- $PYTHON -m pip install -U pip +- $PYTHON -m pip install -e. --group test script: | # travis_wait disable the output while waiting diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 5c244ac7..23d6928e 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -25,8 +25,8 @@ jobs: versionSpec: '3.11' - bash: | docker run --rm --privileged docker.io/tonistiigi/binfmt:latest --install all - python -m pip install dependency-groups - python -m dependency_groups test | xargs python -m pip install -e. + python -m pip install -U pip + python -m pip install -e. --group test if [ "$(Build.SourceBranch)" = "refs/heads/main" ]; then echo "INFO: Exporting CIBW_ENABLE=all for main branch test run." export CIBW_ENABLE=all @@ -43,8 +43,8 @@ jobs: inputs: versionSpec: '3.11' - bash: | - python -m pip install dependency-groups - python -m dependency_groups test | xargs python -m pip install -e. + python -m pip install -U pip + python -m pip install -e. --group test if [ "$(Build.SourceBranch)" = "refs/heads/main" ]; then echo "INFO: Exporting CIBW_ENABLE=all for main branch test run." export CIBW_ENABLE=all @@ -61,8 +61,8 @@ jobs: inputs: versionSpec: '3.11' - bash: | - python -m pip install dependency-groups - python -m dependency_groups test | xargs python -m pip install -e. + python -m pip install -U pip + python -m pip install -e. --group test if [ "$(Build.SourceBranch)" = "refs/heads/main" ]; then echo "INFO: Exporting CIBW_ENABLE=all for main branch test run." export CIBW_ENABLE=all