We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 684b317 commit e5efc44Copy full SHA for e5efc44
.github/workflows/continuous-integration.yml
@@ -169,4 +169,4 @@ jobs:
169
- name: Set asv machine
170
run: asv machine --yes
171
- name: Check benchmarks
172
- run: asv dev -a repeat=1 -a rounds=1 --strict
+ run: asv run -a repeat=1 -a rounds=1 --strict HEAD
asv.conf.json
@@ -20,5 +20,10 @@
20
"benchmark_dir": "benchmarks",
21
"env_dir": ".asv/env",
22
"results_dir": ".asv/results",
23
- "html_dir": ".asv/html"
+ "html_dir": ".asv/html",
24
+ "build_command": [
25
+ "pip install build",
26
+ "python -m build",
27
+ "PIP_NO_BUILD_ISOLATION=false python -mpip wheel --no-deps --no-index -w {build_cache_dir} {build_dir}"
28
+ ]
29
}
0 commit comments