File tree Expand file tree Collapse file tree 4 files changed +16
-16
lines changed Expand file tree Collapse file tree 4 files changed +16
-16
lines changed Original file line number Diff line number Diff line change 10
10
11
11
$PYTHON --version
12
12
$PYTHON -m venv venv
13
- venv/bin/python -m pip install -U pip dependency-groups
14
- venv/bin/python -m dependency_groups test | xargs venv/bin/python -m pip install -e.
13
+ venv/bin/python -m pip install -U pip
14
+ venv/bin/python -m pip install -e. --group test
15
15
venv/bin/python -m pip freeze
16
16
venv/bin/python --version
Original file line number Diff line number Diff line change 20
20
script :
21
21
- curl -sSL https://get.docker.com/ | sh
22
22
- docker run --rm --privileged docker.io/tonistiigi/binfmt:latest --install all
23
- - python -m pip install dependency-groups
24
- - python -m dependency_groups test | xargs python -m pip install -e. pytest-custom-exit-code
23
+ - python -m pip install -U pip
24
+ - python -m pip install -e. pytest-custom-exit-code --group test
25
25
- python ./bin/run_tests.py
26
26
27
27
windows :
@@ -35,8 +35,8 @@ windows:
35
35
variables :
36
36
CIBW_ENABLE : " all"
37
37
script :
38
- - py -m pip install dependency-groups
39
- - py -m pip install -e. pytest-custom-exit-code $(py -m dependency_groups test)
38
+ - py -m pip install -U pip
39
+ - py -m pip install -e. pytest-custom-exit-code --group test
40
40
- py bin\run_tests.py
41
41
tags :
42
42
- saas-windows-medium-amd64
50
50
variables :
51
51
CIBW_ENABLE : " all"
52
52
script :
53
- - python3 -m pip install dependency-groups
54
- - python3 -m dependency_groups test | xargs python3 -m pip install -e. pytest-custom-exit-code
53
+ - python3 -m pip install -U pip
54
+ - python3 -m pip install -e. pytest-custom-exit-code --group test
55
55
- python3 ./bin/run_tests.py
56
56
tags :
57
57
- saas-macos-medium-m1
Original file line number Diff line number Diff line change 64
64
65
65
install :
66
66
- if [ "${TRAVIS_OS_NAME}" == "linux" ]; then docker run --rm --privileged docker.io/tonistiigi/binfmt:latest --install all; fi
67
- - $PYTHON -m pip install -U pip dependency-groups
68
- - $PYTHON -m dependency_groups test | xargs $PYTHON -m pip install -e.
67
+ - $PYTHON -m pip install -U pip
68
+ - $PYTHON -m pip install -e. --group test
69
69
70
70
script : |
71
71
# travis_wait disable the output while waiting
Original file line number Diff line number Diff line change 25
25
versionSpec : ' 3.11'
26
26
- bash : |
27
27
docker run --rm --privileged docker.io/tonistiigi/binfmt:latest --install all
28
- python -m pip install dependency-groups
29
- python -m dependency_groups test | xargs python -m pip install -e.
28
+ python -m pip install -U pip
29
+ python -m pip install -e. --group test
30
30
if [ "$(Build.SourceBranch)" = "refs/heads/main" ]; then
31
31
echo "INFO: Exporting CIBW_ENABLE=all for main branch test run."
32
32
export CIBW_ENABLE=all
43
43
inputs :
44
44
versionSpec : ' 3.11'
45
45
- bash : |
46
- python -m pip install dependency-groups
47
- python -m dependency_groups test | xargs python -m pip install -e.
46
+ python -m pip install -U pip
47
+ python -m pip install -e. --group test
48
48
if [ "$(Build.SourceBranch)" = "refs/heads/main" ]; then
49
49
echo "INFO: Exporting CIBW_ENABLE=all for main branch test run."
50
50
export CIBW_ENABLE=all
61
61
inputs :
62
62
versionSpec : ' 3.11'
63
63
- bash : |
64
- python -m pip install dependency-groups
65
- python -m dependency_groups test | xargs python -m pip install -e.
64
+ python -m pip install -U pip
65
+ python -m pip install -e. --group test
66
66
if [ "$(Build.SourceBranch)" = "refs/heads/main" ]; then
67
67
echo "INFO: Exporting CIBW_ENABLE=all for main branch test run."
68
68
export CIBW_ENABLE=all
You can’t perform that action at this time.
0 commit comments