Skip to content

Commit

Permalink
Just allow passing extra args directly to perf from tox.
Browse files Browse the repository at this point in the history
  • Loading branch information
Julian committed Jul 26, 2022
1 parent e0ebb6d commit e9e9019
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,8 @@ commands =
codecov: {envpython} -m coverage xml -o {envtmpdir}/coverage.xml
codecov: codecov --required --disable gcov --file {envtmpdir}/coverage.xml

perf,perfsuite: mkdir {envtmpdir}/benchmarks/
perf: {envpython} {toxinidir}/jsonschema/benchmarks/issue232.py --inherit-environ JSON_SCHEMA_TEST_SUITE --output {envtmpdir}/benchmarks/issue232.json
perf: {envpython} -m pyperf stats {envtmpdir}/benchmarks/issue232.json
perfsuite: {envpython} {toxinidir}/jsonschema/benchmarks/json_schema_test_suite.py --inherit-environ JSON_SCHEMA_TEST_SUITE --output {envtmpdir}/benchmarks/json_schema_test_suite.json
perf: {envpython} {toxinidir}/jsonschema/benchmarks/issue232.py --inherit-environ JSON_SCHEMA_TEST_SUITE {posargs:--output {envtmpdir}/bench-issue232.json}
perfsuite: {envpython} {toxinidir}/jsonschema/benchmarks/json_schema_test_suite.py --inherit-environ JSON_SCHEMA_TEST_SUITE {posargs:--output {envtmpdir}/bench-json_schema_test_suite.json}

build: {envpython} -m build {toxinidir} --outdir {envtmpdir}/dist
deps =
Expand Down

0 comments on commit e9e9019

Please sign in to comment.