forked from django-commons/axe-selenium-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
25 lines (21 loc) · 622 Bytes
/
tox.ini
File metadata and controls
25 lines (21 loc) · 622 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[tox]
envlist = py27, py36, flake8
skipsdist = true
[testenv]
setenv =
MOZ_HEADLESS = 1
deps = -raxe_selenium_python/tests/requirements/tests.txt
commands = pytest -rsx --verbose
[testenv:flake8]
deps = -raxe_selenium_python/tests/requirements/flake8.txt
commands = flake8 {posargs:.}
[flake8]
max-line-length = 88
# Black will break a line before a binary operator when splitting a block
# of code over multiple lines. This is so that Black is compliant with the
# recent changes in the PEP8 style guide.
ignore = W503
[isort]
default_section = THIRDPARTY
known_first_party = axe-selenium-python
skip = build, .tox