From 47ca7b0f49f9c0de988c313a4016c8bdd7eb817a Mon Sep 17 00:00:00 2001 From: deadc0de6 Date: Tue, 10 Apr 2018 23:08:31 +0200 Subject: [PATCH] update requirements for tests on travis --- .travis.yml | 5 +---- tests-requirements.txt | 1 + 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 962858f..ec1c596 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,10 +5,7 @@ python: - "3.5" - "3.6" install: - - "pip install pep8" - - "pip install nose" - - "pip install coverage" - - "pip install coveralls" + - "pip install -r tests-requirements.txt" - "pip install -r requirements.txt" script: ./tests.sh diff --git a/tests-requirements.txt b/tests-requirements.txt index 3fa73d2..3aea72f 100644 --- a/tests-requirements.txt +++ b/tests-requirements.txt @@ -1,3 +1,4 @@ pycodestyle; python_version >= '3.0' nose; python_version >= '3.0' coverage; python_version >= '3.0' +coveralls; python_version >= '3.0'