We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b28c21 commit 7be54b5Copy full SHA for 7be54b5
tox.ini
@@ -4,10 +4,32 @@
4
# and then run "tox" from this directory.
5
6
[tox]
7
-envlist = py36,py37
+envlist = py36, py37, flake8, pylint
8
+skip_missing_interpreters = true
9
10
[testenv]
11
deps =
12
pytest
13
commands =
14
15
+
16
+[testenv:flake8]
17
+basepython = python
18
+skip_install = true
19
+deps =
20
+ flake8
21
+ flake8-docstrings>=0.2.7
22
+ flake8-import-order>=0.9
23
+ pep8-naming
24
+ flake8-colors
25
+commands =
26
+ flake8 {toxinidir}/codeforces/ {toxinidir}/test/ {toxinidir}/setup.py
27
28
+[testenv:pylint]
29
30
31
32
+ pylint
33
+ -r{toxinidir}/requirements.txt
34
35
+ pylint {toxinidir}/codeforces/
0 commit comments