forked from foundation-model-stack/fms-hf-tuning
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
54 lines (48 loc) · 1022 Bytes
/
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
[tox]
envlist = py, lint, fmt
[testenv]
description = run unit tests
deps =
pytest>=7
commands =
pytest {posargs:tests}
[testenv:fmt]
description = format with pre-commit
deps =
pre-commit
commands = ./scripts/fmt.sh
allowlist_externals = ./scripts/fmt.sh
[testenv:lint]
description = lint with pylint
deps =
pylint>=2.16.2,<=3.1.0
pytest
.[dev]
commands = pylint tuning scripts/*.py build/*.py tests
allowlist_externals = pylint
[testenv:build]
description = build wheel
deps =
build
commands = python -m build -w
skip_install = True
[testenv:twinecheck]
description = check wheel
deps =
twine
commands = twine check dist/*
skip_install = True
[testenv:coverage]
description = report unit test coverage
deps =
coverage
pytest
genbadge[coverage]
commands =
coverage run \
--omit=*/_version.py,*/launch_training.py \
--source=tuning,build \
--module pytest tests/
coverage report -m
coverage xml
genbadge coverage -s -i coverage.xml