File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 55
55
- name : Install dependencies with pytest${{ matrix.pytest-version }}
56
56
run : |
57
57
if [ "${{ matrix.config }}" == "valgrind" ]; then
58
- export PYTEST_CODSPEED_FORCE_EXTENSION =1
58
+ export PYTEST_CODSPEED_FORCE_EXTENSION_BUILD =1
59
59
fi
60
60
uv sync --all-extras --dev --locked --verbose
61
61
uv pip install "pytest${{ matrix.pytest-version }}"
Original file line number Diff line number Diff line change 33
33
34
34
- name : Build the library
35
35
run : uv build --wheel --out-dir dist/
36
+ env :
37
+ PYTEST_CODSPEED_FORCE_EXTENSION_BUILD : 1
36
38
37
39
- uses : actions/upload-artifact@v4
38
40
with :
Original file line number Diff line number Diff line change 23
23
"arm64" ,
24
24
]
25
25
26
- IS_EXTENSION_REQUIRED = os .environ .get ("PYTEST_CODSPEED_FORCE_EXTENSION" ) is not None
26
+ IS_EXTENSION_REQUIRED = (
27
+ os .environ .get ("PYTEST_CODSPEED_FORCE_EXTENSION_BUILD" ) is not None
28
+ )
27
29
if IS_EXTENSION_REQUIRED and not IS_EXTENSION_BUILDABLE :
28
30
raise ValueError (
29
31
"The extension is required but the current platform is not supported"
You can’t perform that action at this time.
0 commit comments