From 5e71a3f2a929e47f272dc2042a69dc8dd21d8d7a Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Tue, 30 Jun 2020 19:34:03 -0700 Subject: [PATCH] remove unused tox.ini --- tox.ini | 46 ---------------------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 tox.ini diff --git a/tox.ini b/tox.ini deleted file mode 100644 index 6417f2d9..00000000 --- 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 - -- 2.47.3