-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (45 loc) · 923 Bytes
/
pyproject.toml
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
[build-system]
requires = [ "setuptools >= 35.0.2", "wheel >= 0.29.0"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
minversion = "6.0"
markers = [
"slow: marks test as slow",
"spider: spider tests",
"unittest: basic module unittest"
]
testpaths = [
"tests",
]
#timeout = 3000 #60
addopts="--ignore-glob='**skip_*' --alluredir=test-reports/allure_results"
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py37, py38, py39
skip_missing_interpreters=True
isolated_build=True
toxworkdir={env:TOX_WORKDIR:.tox}
[testenv]
deps =
numpy==1.16
pandas==1.0.0
asyncmock
pytest
pygments
psutil
coverage-badge
pytest-cov
pytest-timeout
aioresponses
pytest-asyncio
pytest-xprocess
allure-pytest
pytest-assume
openpyxl
install_command=
python -m pip install {opts} {packages}
pip_pre=True
commands=
pytest -rA -vvv {posargs}
"""