diff options
-rw-r--r-- | .travis.yml | 3 | ||||
-rw-r--r-- | requirements.txt | 4 | ||||
-rw-r--r-- | test/requirements.txt | 5 |
3 files changed, 7 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml index 84f97c9b..653f0d8c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,11 +3,10 @@ python: - "2.7" # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors install: - - "pip install coveralls --use-mirrors" - - "pip install nose-cov --use-mirrors" - "pip install -r requirements.txt --use-mirrors" - "pip install ." - "pip install --upgrade git+https://github.com/mitmproxy/pathod.git" + - "pip install -r test/requirements.txt --use-mirrors" # command to run tests, e.g. python setup.py test script: - "nosetests --with-cov --cov-report term-missing" diff --git a/requirements.txt b/requirements.txt index bcf8e48f..460a60e4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,2 @@ pyasn1>=0.1.7 -pyOpenSSL>=0.13 -nose>=1.3.0 -mock>=1.0.1 +pyOpenSSL>=0.13
\ No newline at end of file diff --git a/test/requirements.txt b/test/requirements.txt new file mode 100644 index 00000000..89e4aa0a --- /dev/null +++ b/test/requirements.txt @@ -0,0 +1,5 @@ +mock>=1.0.1 +nose>=1.3.0 +nose-cov>=1.6 +coveralls>=0.4.1 +pathod>=0.10
\ No newline at end of file |