forked from pytest-dev/pytest-selenium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
59 lines (52 loc) · 1.49 KB
/
tox.ini
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# Tox (http://tox.testrun.org/) is a tool for running tests
# in multiple virtualenvs. This configuration file will run the
# test suite on all supported python versions. To use it, "pip install tox"
# and then run "tox" from this directory.
[tox]
envlist = py{3.8, 3.9, 3.10, 3.11, 3.12, py3.10}, docs, linting
isolated_build = True
[testenv]
passenv =
PYTEST_ADDOPTS
setenv =
PYTHONDONTWRITEBYTECODE=1
MOZ_HEADLESS=1
deps =
pytest-xdist
pytest-mock
commands = pytest -n auto -s -ra --color=yes --strict-config --strict-markers --html={envlogdir}/report.html --self-contained-html {posargs}
[testenv:docs]
basepython = python3
changedir = docs
deps = sphinx
commands = sphinx-build -W -b html -d {envtmpdir}/doctrees . {envtmpdir}/html
[testenv:linting]
skip_install = True
basepython = python3
deps = pre-commit
commands = pre-commit run --all-files --show-diff-on-failure
[testenv:devel]
description = Tests with unreleased deps
basepython = python3
pip_pre = True
deps =
{[testenv]deps}
pytest-html<4.0.0
py # removed in latest pytest and needs fixing
pytest @ git+https://github.com/pytest-dev/pytest.git
[flake8]
max-line-length = 120
exclude = .eggs,.tox
# rationale here:
# https://github.com/psf/black/blob/master/docs/the_black_code_style.md#slices
extend-ignore = E203
[pytest]
# Set test-directory explicitly to avoid PytestCollectionWarning
testpaths = testing
# Register markers used by tests
markers =
firefox
edge
chrome
skip_selenium
nondestructive