-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
48 lines (40 loc) · 698 Bytes
/
tox.ini
File metadata and controls
48 lines (40 loc) · 698 Bytes
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
[tox]
envlist =
pyroma
doc8
py
flake8
[testenv:doc8]
skip_install = true
deps =
pygments
doc8
commands = doc8 README.rst docs/source/
[testenv:pyroma]
deps =
pygments
pyroma
skip_install = true
commands = pyroma --min=10 .
description = Run the pyroma tool to check the package friendliness of the project.
[testenv]
skip_install = false
deps =
pytest
commands =
pytest tests/
[testenv:flake8]
skip_install = true
deps =
flake8
flake8-bandit
flake8-colors
flake8-docstrings
flake8-import-order
flake8-bugbear
pep8-naming
pydocstyle
flake8-commas
flake8-coding
commands =
flake8 src/charly/ tests/ setup.py