|
10 | 10 |
|
11 | 11 | jobs: |
12 | 12 | build-and-test: |
13 | | - name: Testing with Python 3.${{ matrix.python_minor }} on Linux |
| 13 | + name: Testing on Linux |
14 | 14 | runs-on: ubuntu-latest |
15 | 15 |
|
16 | 16 | steps: |
|
24 | 24 | run: cibuildwheel |
25 | 25 | env: |
26 | 26 | CIBW_BUILD: "cp3*-manylinux_x86_64" |
27 | | - CIBW_BEFORE_TEST: pip install -r ".[dev]" |
| 27 | + CIBW_BEFORE_TEST: pip install ".[dev]" |
28 | 28 | CIBW_TEST_COMMAND: "pytest -s {project}" |
29 | 29 | CIBW_BUILD_VERBOSITY: 1 |
30 | 30 |
|
|
43 | 43 | run: | |
44 | 44 | pip3 install --user check-manifest twine |
45 | 45 | python3 -m pip install --upgrade pip setuptools wheel |
46 | | - python3 -m pip install -r ".[dev]" |
| 46 | + python3 -m pip install ".[dev]" |
47 | 47 |
|
48 | 48 | - name: Run check-manifest |
49 | 49 | run: python3 -m check_manifest |
|
95 | 95 | CC: /usr/bin/clang |
96 | 96 | CXX: /usr/bin/clang++ |
97 | 97 | CFLAGS: "-Wno-implicit-function-declaration" |
98 | | - CIBW_BEFORE_TEST: pip install -r ".[dev]" |
| 98 | + CIBW_BEFORE_TEST: pip install ".[dev]" |
99 | 99 | CIBW_TEST_COMMAND: "pytest -s {project}" |
100 | 100 | CIBW_BUILD_VERBOSITY: 1 |
101 | 101 |
|
@@ -138,7 +138,7 @@ jobs: |
138 | 138 | env: |
139 | 139 | CIBW_BUILD: ${{ format('cp3*-{0}*', matrix.cibw_buildlinux) }} |
140 | 140 | CIBW_ARCHS_LINUX: ${{ matrix.cibw_arch }} |
141 | | - CIBW_BEFORE_TEST: pip install -r ".[dev]" |
| 141 | + CIBW_BEFORE_TEST: pip install ".[dev]" |
142 | 142 | CIBW_TEST_COMMAND: "pytest -s {project}" |
143 | 143 | CIBW_BUILD_VERBOSITY: 1 |
144 | 144 |
|
@@ -170,7 +170,7 @@ jobs: |
170 | 170 | env: |
171 | 171 | CIBW_BUILD: "cp3*" |
172 | 172 | CIBW_ARCHS_WINDOWS: "AMD64" |
173 | | - CIBW_BEFORE_TEST: pip install -r ".[dev]" |
| 173 | + CIBW_BEFORE_TEST: pip install ".[dev]" |
174 | 174 | CIBW_TEST_COMMAND: "pytest -s {project}" |
175 | 175 | CIBW_BUILD_VERBOSITY: 1 |
176 | 176 |
|
|
0 commit comments