-
Notifications
You must be signed in to change notification settings - Fork 4
/
tox.ini
51 lines (44 loc) · 1.38 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
################################################################################
# Tox Configuration
################################################################################
[tox]
envlist = py36, py38, flake8
################################################################################
# PyTest
################################################################################
[testenv]
deps =
.[test]
commands =
pytest
################################################################################
# Flake 8
################################################################################
[testenv:flake8]
skip_install = true
deps =
flake8
flake8-bugbear
flake8-docstrings>=1.3.1
flake8-typing-imports>=1.1
pep8-naming
commands =
flake8 streamlit_parameters/ tests/ setup.py
################################################################################
# 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