From 4cd69f144e0f84b2d6f7540f214a6204b4716b8e Mon Sep 17 00:00:00 2001 From: Pauli Virtanen Date: Sat, 21 Feb 2015 23:00:02 +0200 Subject: [PATCH] MAINT: add benchmarks to Travis-CI pyflakes+pep8 checks --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1b17790c0adf..f32f459a1b42 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,8 +12,8 @@ matrix: - pip install pep8==1.5.1 - pip install pyflakes script: - - PYFLAKES_NODOCTEST=1 pyflakes scipy | grep -E -v 'unable to detect undefined names|assigned to but never used|imported but unused|redefinition of unused' > test.out; cat test.out; test \! -s test.out - - pep8 scipy + - PYFLAKES_NODOCTEST=1 pyflakes scipy benchmarks/benchmarks | grep -E -v 'unable to detect undefined names|assigned to but never used|imported but unused|redefinition of unused' > test.out; cat test.out; test \! -s test.out + - pep8 scipy benchmarks/benchmarks - python: 3.4 env: - TESTMODE=fast