From 356118f2985de1fdb09d2db8951f592fc6418fda Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Sat, 10 Dec 2022 20:39:28 +0000 Subject: [PATCH] Drop tox --- README.rst | 13 ++++--------- tox.ini | 9 --------- 2 files changed, 4 insertions(+), 18 deletions(-) delete mode 100644 tox.ini diff --git a/README.rst b/README.rst index aabcf9f..aaaa25a 100644 --- a/README.rst +++ b/README.rst @@ -67,16 +67,11 @@ You can force this at installation time as follows: Running the test suite ---------------------- -There are several ways of running the test suite: +From the top level directory, run: ``python tests/tests.py`` -- Run the test with the current Python interpreter: - - From the top level directory, run: ``python tests/tests.py`` - -- Use Tox to run the test suite in several virtualenvs with several interpreters - - From the top level directory, run: ``tox -e py37,py38,py39`` this will run the test suite - on Python 3.7 through 3.9 (you'll need to have them installed beforehand) +NOTE: Running the tests requires internet access and are somewhat environment sensitive because real DNS quesries +are made, there is no mocking. If you observe a failure that the CI cannot reproduce, please try to setup an +environment as close as the current CI. Using it from the cli, a la dig diff --git a/tox.ini b/tox.ini deleted file mode 100644 index e30a07c..0000000 --- a/tox.ini +++ /dev/null @@ -1,9 +0,0 @@ -[tox] -envlist = py36, py37, py38, py39, py310 - -[testenv] -commands = python tests/tests.py - -[testenv:idna] -extras = idna -basepython = python3