diff options
| author | 2018-02-26 22:22:16 +0100 | |
|---|---|---|
| committer | 2018-02-26 22:22:16 +0100 | |
| commit | 48bb43b91a992395a39ebf8d41389dd3667c38b8 (patch) | |
| tree | b9e32384a5d4770899c35d4605a93dffa25ebb3c | |
| parent | Help page #z62n (#25) (diff) | |
remove snekchek and replace with flake8 (#27)
Diffstat (limited to '')
| -rw-r--r-- | .travis.yml | 2 | ||||
| -rw-r--r-- | requirements-ci.txt | 3 | ||||
| -rw-r--r-- | tox.ini (renamed from .snekrc) | 5 | 
3 files changed, 2 insertions, 8 deletions
| diff --git a/.travis.yml b/.travis.yml index 376c1604..52cccc0a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,7 +11,7 @@ install:    - pip install -r requirements.txt    - pip install -r requirements-ci.txt  script: -  - snekchek +  - flake8    - py.test app_test.py --cov pysite --cov-report term-missing -v    - coveralls  after_success: diff --git a/requirements-ci.txt b/requirements-ci.txt index 0ce27166..f10a0b78 100644 --- a/requirements-ci.txt +++ b/requirements-ci.txt @@ -1,12 +1,9 @@ -snekchek  flake8  flake8-bugbear  flake8-bandit  flake8-import-order  flake8-tidy-imports  flake8-string-format -safety -dodgy  requests  Flask-Testing  pytest @@ -1,7 +1,4 @@ -[all] -linters = flake8, safety, dodgy -  [flake8]  max-line-length=120  application_import_names=pysite -ignore=P102
\ No newline at end of file +ignore=P102 | 
