summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorTimothy Edmund Crosley <timothy.crosley@gmail.com>2017-06-04 15:05:29 -0700
committerGitHub <noreply@github.com>2017-06-04 15:05:29 -0700
commit8e2f7129479ab0dce4f2702b2e4335743c1a4c8b (patch)
treeec2884999c8851e2f887156849722a1af06b4d28 /tox.ini
parent2da2930c069a9fc02a728b2defd3e3a6df59ee78 (diff)
parentafd846511c8d6f8fbcb49c46cf81df4bd3b0b897 (diff)
downloadisort-8e2f7129479ab0dce4f2702b2e4335743c1a4c8b.tar.gz
Merge pull request #564 from jdufresne/six
Drop unused dependency on six
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini12
1 files changed, 3 insertions, 9 deletions
diff --git a/tox.ini b/tox.ini
index b2324a68..7c70f99e 100644
--- a/tox.ini
+++ b/tox.ini
@@ -5,17 +5,11 @@ envlist =
lint
[testenv]
-commands =
- py.test test_isort.py {posargs}
-deps =
- six
- pytest
+deps = pytest
+commands = py.test test_isort.py {posargs}
[testenv:isort-check]
-commands =
- python setup.py isort
-deps =
- six
+commands = python setup.py isort
[testenv:lint]
basepython = python2.7