Skip to content

Commit

Permalink
ASV dropped --strict option in 0.6.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
yarikoptic committed Sep 20, 2023
1 parent cfd1148 commit 22fabb9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
echo "ASV_PYTHON=$ASV_PYTHON" >> "$GITHUB_ENV"
- name: Run benchmarks on newest code
run: asv run --strict --show-stderr --python "$ASV_PYTHON" HEAD^-1
run: asv run --show-stderr --python "$ASV_PYTHON" HEAD^-1

- name: Clean out vfat mount
run: rm -rf /tmp/vfat/*
Expand All @@ -92,7 +92,7 @@ jobs:
run: git checkout --force refs/bm/merge-target

- name: Run benchmarks on previous code
run: asv run --strict --show-stderr --python "$ASV_PYTHON" HEAD^-1
run: asv run --show-stderr --python "$ASV_PYTHON" HEAD^-1

- name: Compare benchmarks on previous & newest code
run: asv compare refs/bm/merge-target refs/bm/pr
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ commands =
[testenv:benchmark]
skip_install = True
deps =
asv
asv ~= 0.6.0
virtualenv
commands =
asv run --strict {posargs} HEAD^1..HEAD
asv run {posargs} HEAD^1..HEAD

[pytest]
addopts = --cov=fscacher --no-cov-on-fail
Expand Down

0 comments on commit 22fabb9

Please sign in to comment.