summaryrefslogtreecommitdiffstats
path: root/docker/tox.ini
diff options
context:
space:
mode:
Diffstat (limited to 'docker/tox.ini')
-rw-r--r--docker/tox.ini29
1 files changed, 0 insertions, 29 deletions
diff --git a/docker/tox.ini b/docker/tox.ini
deleted file mode 100644
index 96c0e1f..0000000
--- a/docker/tox.ini
+++ /dev/null
@@ -1,29 +0,0 @@
-[tox]
-envlist = py27,py36,cov
-
-[testenv]
-# coverage can only find modules if pythonpath is set
-setenv=
- PYTHONPATH={toxinidir}
- COVERAGE_FILE=.coverage.{envname}
-deps=
- -rrequirements.txt
- pytest
- coverage
- pytest-cov
-commands=
- coverage erase
- pytest --junitxml xunit-results.{envname}.xml --cov dockerplugin
-
-[testenv:cov]
-skip_install = true
-deps=
- coverage
-setenv=
- COVERAGE_FILE=.coverage
-commands=
- coverage combine
- coverage xml
-
-[pytest]
-junit_family = xunit2