-
Notifications
You must be signed in to change notification settings - Fork 2
/
tox.ini
51 lines (44 loc) · 1.3 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
# This file can be used to customize tox tests as well as other test frameworks like flake8 and mypy
[tox]
envlist = py310
; envlist = py37, py38, py39
isolated_build = true
[testenv]
allowlist_externals = poetry
passenv = HUB_ROOT_PATH
commands =
poetry install -v
poetry run coverage run -m pytest --capture=no
poetry run coverage html -d tests/codecoverage
poetry run ruff check --diff hub_utils/
# poetry run mypy hub_utils --exclude='tests'
[testenv:pytest]
# Run the python tests.
# To execute, run `tox -e pytest`
envlist = py{310,311,312}
commands =
poetry install -v
poetry run coverage run -m pytest --capture=no
poetry run coverage html -d tests/codecoverage
[testenv:format]
# Attempt to auto-resolve lint errors before they are raised.
# To execute, run `tox -e format`
commands =
poetry install -v
poetry run ruff check --fix hub_utils/
poetry run ruff format hub_utils
[testenv:lint]
# Raise an error if lint and style standards are not met.
# To execute, run `tox -e lint`
commands =
poetry install -v
poetry run ruff check --diff hub_utils/
poetry run ruff format --check --diff hub_utils
# refer to mypy.ini for specific settings
# poetry run mypy hub_utils --exclude='tests'
[coverage:run]
source=
hub_utils/
omit=
*/.tox/*
*/test/*