-
Notifications
You must be signed in to change notification settings - Fork 5
/
tox.ini
70 lines (61 loc) · 2.04 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
60
61
62
63
64
65
66
67
68
69
70
################################################################################
# Tox Configuration
################################################################################
[constants]
source_locations = streamlit_parameters
[tox]
envlist = py38, py310, format, check
skip_missing_interpreters = true
################################################################################
# PyTest
################################################################################
[testenv]
description = Tests
skip_install = true
allowlist_externals = poetry
commands_pre =
poetry install
commands =
poetry run pytest -s tests
################################################################################
# Flake 8
################################################################################
[testenv:format]
description = Format
skip_install = true
allowlist_externals = poetry
commands_pre =
poetry install
commands =
poetry run ufmt format {[constants]source_locations}
######################################################################
# Check
######################################################################
[testenv:check]
description = Formatters, Linters & Static Checkers
skip_install = true
allowlist_externals = poetry
commands_pre =
poetry install
commands =
poetry run flake8 {[constants]source_locations}
poetry run ufmt check {[constants]source_locations}
# poetry run mypy --config-file {toxinidir}/tox.ini {[constants]source_locations}
################################################################################
# Flake 8 Configuration
#
# Don't require docstrings, but parse them correctly if they are there
# D100 - Missing docstring in public module
# D103 - Missing docstring in public function
# W503 - Line break before binary operator (bug: https://github.com/mila-iqia/cookiecutter-pyml/issues/10)
################################################################################
[flake8]
max-line-length = 120
statistics = 1
ignore = D100, D103, W503
exclude =
.tox
.venv
.git
doc
dist