From bf337c0ffa09e95a612bc20bce2c6555147646fd Mon Sep 17 00:00:00 2001 From: Michael Howitz Date: Sat, 25 May 2019 09:48:39 +0200 Subject: [PATCH] Flake8 `testproj`, too. --- .travis.yml | 2 +- testproj/src/testpkg/__init__.py | 2 -- tox.ini | 2 +- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 27256d3..7948889 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,7 +10,7 @@ matrix: - python: 3.6 name: "Flake8" install: pip install -U flake8 - script: flake8 --doctests src setup.py + script: flake8 --doctests src testproj setup.py after_success: script: - coverage run -m zope.testrunner --test-path=src --auto-color --auto-progress diff --git a/testproj/src/testpkg/__init__.py b/testproj/src/testpkg/__init__.py index bf8af11..fd1d36d 100644 --- a/testproj/src/testpkg/__init__.py +++ b/testproj/src/testpkg/__init__.py @@ -2,5 +2,3 @@ _ = MessageFactory('testproj') testmessage = _('Message from Python') - - diff --git a/tox.ini b/tox.ini index 17f535e..199e06e 100644 --- a/tox.ini +++ b/tox.ini @@ -12,4 +12,4 @@ deps = basepython = python3.6 skip_install = true deps = flake8 -commands = flake8 --doctests src setup.py +commands = flake8 --doctests src testproj setup.py