From 2eeb6b5648dbf99f1a0d8acdb97a99cbab17f788 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20G=C3=A4rtner?= Date: Fri, 28 Oct 2016 21:05:27 +0200 Subject: [PATCH] streamlined travis process and dependencies --- .travis.yml | 3 +-- setup.py | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index ff3677fb..bd8ad0b1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,11 +15,10 @@ install: - sudo apt-get install rethinkdb - pip install -e .[test] - pip install codecov - - pip install flake8 before_script: - - rethinkdb --daemon - flake8 --max-line-length 119 bigchaindb/ + - rethinkdb --daemon script: py.test -n auto -s -v --cov=bigchaindb diff --git a/setup.py b/setup.py index ee625ab2..e4e942ad 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ check_setuptools_features() tests_require = [ 'coverage', 'pep8', - 'pyflakes', + 'flake8', 'pylint', 'pytest', 'pytest-cov==2.2.1',