Use test extra in tox configuration
authorHarmon <Harmon758@gmail.com>
Wed, 16 Oct 2019 13:59:46 +0000 (08:59 -0500)
committerHarmon <Harmon758@gmail.com>
Wed, 16 Oct 2019 14:10:51 +0000 (09:10 -0500)
Bump tox requirement to >= 2.4.0, the version where the “extras” environment option was added

setup.py
tox.ini

index 56a5dfa114f8d919bfae0fd4b9c858f8a536e964..2a142bf32713857e0df32283667acdbe803d5f73 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -17,7 +17,7 @@ else:
 tests_require = [
     "mock>=1.0.1",
     "nose>=1.3.3",
-    "tox>=1.7.2",
+    "tox>=2.4.0",
     "vcrpy>=1.10.3",
 ]
 
diff --git a/tox.ini b/tox.ini
index fbf427f4e92500f1afce0fc79d1e79dcb7c938eb..b88c0d950d1867887a2baf15142cbb3b8682f774 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -8,9 +8,6 @@ envlist = py27, py35, py36, py37
 
 [testenv]
 commands = nosetests -v tests.test_api tests.test_cursors tests.test_resultset tests.test_utils
-deps =
-    mock >= 1.0.1
-    nose >= 1.3.3
-    vcrpy >= 1.10.3
+extras = test
 setenv =
     USE_REPLAY = 1