diff options
author | Julian Berman <Julian@GrayVines.com> | 2020-01-04 13:24:05 +0000 |
---|---|---|
committer | Julian Berman <Julian@GrayVines.com> | 2020-01-04 13:24:05 +0000 |
commit | 0c21af94afec4bbb57740e5fe0f5610bf8f318bc (patch) | |
tree | 36af1e97fedf4dd2e8a1bc7473856c60b121c579 /tox.ini | |
parent | 3afab8ee27475896ab178de3ed98f3193e5a5423 (diff) | |
download | jsonschema-0c21af94afec4bbb57740e5fe0f5610bf8f318bc.tar.gz |
More -ms.
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -98,9 +98,9 @@ setenv = COVERAGE_FILE={envtmpdir}/coverage-data commands = {envpython} -m pip install '{toxinidir}[format]' - {envbindir}/coverage run --rcfile={toxinidir}/.coveragerc {envbindir}/trial jsonschema - {envbindir}/coverage report --rcfile={toxinidir}/.coveragerc --show-missing - {envbindir}/coverage html --directory={envtmpdir}/htmlcov --rcfile={toxinidir}/.coveragerc {posargs} + {envpython} -m coverage run --rcfile={toxinidir}/.coveragerc -m twisted.trial jsonschema + {envpython} -m coverage report --rcfile={toxinidir}/.coveragerc --show-missing + {envpython} -m coverage html --directory={envtmpdir}/htmlcov --rcfile={toxinidir}/.coveragerc {posargs} [testenv:docs-html] basepython = pypy3 @@ -143,6 +143,6 @@ passenv = CODECOV* CI setenv = {[testenv:coverage]setenv} commands = {envpython} -m pip install '{toxinidir}[format]' - {envbindir}/coverage run --rcfile={toxinidir}/.coveragerc {envbindir}/trial jsonschema - {envbindir}/coverage xml -o {envtmpdir}/coverage.xml + {envpython} -m coverage run --rcfile={toxinidir}/.coveragerc -m twisted.trial jsonschema + {envpython} -m coverage xml -o {envtmpdir}/coverage.xml codecov --required --disable gcov --file {envtmpdir}/coverage.xml |