]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
remove unused tox.ini
authorBob Halley <halley@play-bow.org>
Wed, 1 Jul 2020 02:34:03 +0000 (19:34 -0700)
committerBob Halley <halley@play-bow.org>
Wed, 1 Jul 2020 02:34:03 +0000 (19:34 -0700)
tox.ini [deleted file]

diff --git a/tox.ini b/tox.ini
deleted file mode 100644 (file)
index 6417f2d..0000000
--- a/tox.ini
+++ /dev/null
@@ -1,46 +0,0 @@
-[tox]
-envlist =
-    py36,
-    py37,
-    flake8,
-    pylint,
-    mypy,
-    coverage
-
-[testenv]
-
-commands=
-    python setup.py test
-
-deps=
-
-[testenv:flake8]
-commands =
-    pip install flake8
-    flake8 dns
-
-[testenv:pylint]
-commands =
-    pip install pylint
-    pylint dns
-
-[testenv:mypy]
-commands =
-    pip install mypy
-    mypy examples tests
-
-[testenv:coverage]
-basepython = python2
-
-deps =
-    coverage
-
-commands =
-    python setup.py install
-    coverage run --rcfile=.coverage.ini setup.py test
-    coverage report
-
-[pep8]
-show-pep8 = True
-show-source = True
-