summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorPaul Ganssle <paul@ganssle.io>2018-11-02 20:38:43 -0400
committerPaul Ganssle <paul@ganssle.io>2018-11-02 20:53:01 -0400
commit7a3e4b4169d5f65714f1302aff6c420237ff9295 (patch)
tree527f4ad4b9ba9eb8b98313aa03025229ce8bd20c /tests
parent6ed6fe8def487aa77ee67d5ab3adcb2b66814831 (diff)
downloadpython-setuptools-git-7a3e4b4169d5f65714f1302aff6c420237ff9295.tar.gz
Add futures backport to test reqs
`setuptools.tests.test_build_meta` relies on the Python 3 feature `concurrent.futures` to run, and as a result has been silently skipped in Python 2.7. This adds the `futures` backport to the 2.7 test requirements and turns the `pytest.importorskip` invocations in test_build_meta into standard import statements.
Diffstat (limited to 'tests')
-rw-r--r--tests/requirements.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/requirements.txt b/tests/requirements.txt
index b38fcbf0..0c6c3e59 100644
--- a/tests/requirements.txt
+++ b/tests/requirements.txt
@@ -8,3 +8,4 @@ wheel
coverage>=4.5.1
pytest-cov>=2.5.1
paver; python_version>="3.6"
+futures; python_version=="2.7"