mirror of
https://github.com/internetarchive/warcprox.git
synced 2025-01-18 13:22:09 +01:00
Add missing `requests` and `warcio` packages. They are used in unit tests but they were not included in `setup.py`. Add `tox` configuration in order to be able to run unit tests for py27, py34 and py35 with 1 command.
10 lines
109 B
INI
10 lines
109 B
INI
[tox]
|
|
envlist=py27,py34,py35
|
|
[testenv]
|
|
deps=
|
|
pytest
|
|
pytest-xdist
|
|
requests
|
|
mock
|
|
commands=py.test -n 4
|