mirror of
https://github.com/lilydjwg/nvchecker.git
synced 2025-03-10 06:14:02 +00:00
the `asyncio_mode` of `legacy` (current default) is deprecated. `asyncio_mode` will be `strict` by default in the future.
27 lines
467 B
TOML
27 lines
467 B
TOML
[build-system]
|
|
requires = ["setuptools"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.pytest.ini_options]
|
|
# addopts = -n auto
|
|
asyncio_mode = "strict"
|
|
|
|
[tool.tox]
|
|
legacy_tox_ini = """
|
|
[tox]
|
|
isolated_build = True
|
|
# you may find `tox --skip-missing-interpreters=true` helpful.
|
|
envlist = py3{7,8,9,10}
|
|
|
|
[testenv]
|
|
usedevelop = false
|
|
deps =
|
|
pytest
|
|
pytest-asyncio
|
|
pytest-httpbin
|
|
flaky
|
|
extras =
|
|
htmlparser
|
|
passenv = KEYFILE
|
|
commands = pytest -r fEs {posargs}
|
|
"""
|