forked from SeyedMohamadMoosavi/tools-cp-porousmat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
47 lines (40 loc) · 688 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
[tox]
envlist =
pyroma
flake8
docs
py
[testenv]
commands =
pytest tests
deps =
pytest
[testenv:pyroma]
commands =
pyroma .
deps =
pyroma
skip_install = true
[testenv:flake8]
skip_install = true
deps =
flake8
flake8-bandit
flake8-builtins
flake8-bugbear
flake8-colors
flake8-commas
flake8-comprehensions
flake8-docstrings
flake8-import-order
flake8-print
flake8-use-fstring
pep8-naming
pydocstyle
commands =
flake8 src/cp_app/ setup.py
description = Run the flake8 tool with several plugins (bandit, docstring, import order, pep8 naming)
[testenv:docs]
chagedir = docs
extras =
docs