Skip to content

Commit

Permalink
We use Codacy/PyLint so remove all Flake8 stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
ttmc committed Dec 24, 2018
1 parent 9b46342 commit 7c88e11
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 17 deletions.
3 changes: 0 additions & 3 deletions Makefile
Expand Up @@ -52,9 +52,6 @@ clean-test: ## remove test and coverage artifacts
rm -fr htmlcov/
rm -fr .pytest_cache

lint: ## check style with flake8
flake8 aquarius tests

test: ## run tests quickly with the default Python
py.test

Expand Down
6 changes: 0 additions & 6 deletions setup.cfg
Expand Up @@ -14,15 +14,9 @@ replace = __version__ = '{new_version}'
[bdist_wheel]
universal = 1

[flake8]
exclude = docs
ignore = E501, E402


[aliases]
# Define setup.py command aliases here
test = pytest

[tool:pytest]
collect_ignore = ['setup.py']

3 changes: 1 addition & 2 deletions setup.py
Expand Up @@ -39,9 +39,8 @@
test_requirements = [
'codacy-coverage==1.3.11',
'coverage==4.5.1',
'flake8==3.5.0',
'mccabe==0.6.1',
'pyflakes==1.6.0',
'pylint==2.2.2',
'pytest==3.4.2',
'tox==3.2.1',
]
Expand Down
7 changes: 1 addition & 6 deletions tox.ini
@@ -1,16 +1,11 @@
[tox]
envlist = py36, py37, flake8
envlist = py36, py37

[travis]
python =
3.6: py36
3.7: py37

[testenv:flake8]
basepython = python
deps = flake8
commands = flake8 aquarius

[testenv]
passenv = CODACY_PROJECT_TOKEN
setenv =
Expand Down

0 comments on commit 7c88e11

Please sign in to comment.