1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-15 00:03:28 +01:00

tests: add test dependency, remove 2.6 from travis

This commit is contained in:
Ilya Kreymer 2016-11-11 11:03:16 -08:00
parent 8765de4fe7
commit e37900b9c6
2 changed files with 4 additions and 2 deletions

View File

@ -1,7 +1,6 @@
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"

View File

@ -85,7 +85,7 @@ setup(
'brotlipy',
'pyyaml',
'webencodings',
'gevent>=1.1.1',
'gevent==1.1.2',
'webassets',
],
tests_require=[
@ -94,6 +94,9 @@ setup(
'pytest-cov',
'fakeredis',
'mock',
'urllib3',
'bottle',
'werkzeug',
],
cmdclass={'test': PyTest},
test_suite='',