Skip to content

Commit

Permalink
fix: poetry run --
Browse files Browse the repository at this point in the history
  • Loading branch information
public committed Aug 23, 2023
1 parent 52eed22 commit 0487aa0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
- run: poetry install
- restore_cache:
key: benchmarks-{{ .Environment.CIRCLE_JOB }}-master
- run: poetry run tox -e py37 -- --benchmark-save=${CIRCLE_BRANCH} --benchmark-compare
- run: poetry run tox -- -e py37 -- --benchmark-save=${CIRCLE_BRANCH} --benchmark-compare
- save_cache:
key: benchmarks-{{ .Environment.CIRCLE_JOB }}-{{ .Branch }}-{{ .Revision }}
paths:
Expand All @@ -80,7 +80,7 @@ jobs:
- run: poetry install
- restore_cache:
key: benchmarks-{{ .Environment.CIRCLE_JOB }}-master
- run: poetry run tox -e py39 -- --benchmark-save=${CIRCLE_BRANCH} --benchmark-compare
- run: poetry run tox -- -e py39 -- --benchmark-save=${CIRCLE_BRANCH} --benchmark-compare
- save_cache:
key: benchmarks-{{ .Environment.CIRCLE_JOB }}-{{ .Branch }}-{{ .Revision }}
paths:
Expand All @@ -98,7 +98,7 @@ jobs:
- run: poetry install
- restore_cache:
key: benchmarks-{{ .Environment.CIRCLE_JOB }}-master
- run: poetry run tox -e py310 -- --benchmark-save=${CIRCLE_BRANCH} --benchmark-compare
- run: poetry run tox -- -e py310 -- --benchmark-save=${CIRCLE_BRANCH} --benchmark-compare
- save_cache:
key: benchmarks-{{ .Environment.CIRCLE_JOB }}-{{ .Branch }}-{{ .Revision }}
paths:
Expand Down

0 comments on commit 0487aa0

Please sign in to comment.