diff options
| author | Daniel Lemm <61800298+ffe4@users.noreply.github.com> | 2020-03-31 11:31:39 +0200 |
|---|---|---|
| committer | Daniel Lemm <61800298+ffe4@users.noreply.github.com> | 2020-04-01 19:27:08 +0200 |
| commit | 9d909b015cb8a254bf6d6db2e57a5cfb2d22aec3 (patch) | |
| tree | 0bd6b2dcf2a692a113f6dee0744d2a50f26a5b0c | |
| parent | 41e821980c4db9ac3adfc342e452c855ad5d6462 (diff) | |
| download | dateutil-git-9d909b015cb8a254bf6d6db2e57a5cfb2d22aec3.tar.gz | |
Update tox.ini to run on Windows
Commands were invoked without `python -m`, failing on Windows CI.
| -rw-r--r-- | tox.ini | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -34,16 +34,16 @@ deps = coverage skip_install = True changedir = {toxworkdir} setenv = COVERAGE_FILE=.coverage -commands = coverage erase - coverage combine - coverage report --rcfile={toxinidir}/tox.ini - coverage xml +commands = python -m coverage erase + python -m coverage combine + python -m coverage report --rcfile={toxinidir}/tox.ini + python -m coverage xml [testenv:codecov] description = [only run on CI]: upload coverage data to codecov (depends on coverage running first) deps = codecov skip_install = True -commands = codecov --file {toxworkdir}/coverage.xml +commands = python -m codecov --file {toxworkdir}/coverage.xml [testenv:dev] description = DEV environment |
