diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-10-31 09:15:43 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-10-31 09:15:43 -0400 |
commit | 4027f8fd1f0382586f26fb864f660b5e13f092f8 (patch) | |
tree | 0a3700c290e336d7f95377d66481aa6241213a20 | |
parent | 721dc0b80fa56b0032f99b56f5bc63a65f828f4e (diff) | |
download | python-setuptools-git-4027f8fd1f0382586f26fb864f660b5e13f092f8.tar.gz |
Move test requirements into another file so they might be referenced manually.
-rw-r--r-- | tests/requirements.txt | 4 | ||||
-rw-r--r-- | tox.ini | 7 |
2 files changed, 5 insertions, 6 deletions
diff --git a/tests/requirements.txt b/tests/requirements.txt new file mode 100644 index 00000000..d07e9cde --- /dev/null +++ b/tests/requirements.txt @@ -0,0 +1,4 @@ +pytest-flake8 +pytest>=3.0.2 +setuptools[ssl] +backports.unittest_mock>=1.2 @@ -1,9 +1,4 @@ [testenv] -deps= - pytest-flake8 - pytest>=3.0.2 - setuptools[ssl] - backports.unittest_mock>=1.2 - +deps=-rtests/requirements.txt passenv=APPDATA USERPROFILE HOMEDRIVE HOMEPATH windir commands=python -m pytest {posargs:-rsx} |