diff options
author | Waylan Limberg <waylan.limberg@icloud.com> | 2016-01-28 14:04:24 -0500 |
---|---|---|
committer | Waylan Limberg <waylan.limberg@icloud.com> | 2016-01-28 14:04:24 -0500 |
commit | eda5d198eb6e788a536d7b72ed40eb8567cc0587 (patch) | |
tree | 2e1b43a6a7b1531b68a55db284b1ad39a6a3cc65 /tox.ini | |
parent | 13139be678cf125d3625341c0d8d4bbc0452d31c (diff) | |
download | markdown-eda5d198eb6e788a536d7b72ed40eb8567cc0587.tar.gz markdown-eda5d198eb6e788a536d7b72ed40eb8567cc0587.tar.bz2 markdown-eda5d198eb6e788a536d7b72ed40eb8567cc0587.zip |
Remove downloadcache tox config value.
The `downloadcache` config value is deprecated by tox and the related `--download-cache` flag is removed on pip version 8.0 (deprecated in 6.0). With this change tests should run with the lasted versions of all tools (they do not without it).
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -2,7 +2,6 @@ envlist = py27, py32, py33, py34, pypy, flake8, checkspelling [testenv] -downloadcache = {toxworkdir}/cache deps = -rtest-requirements.txt commands = coverage run --source=markdown {toxinidir}/run-tests.py {posargs} coverage report --show-missing @@ -16,4 +15,4 @@ deps = commands = {toxinidir}/checkspelling.sh [flake8] -max-line-length = 119
\ No newline at end of file +max-line-length = 119 |