-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtox.ini
More file actions
42 lines (38 loc) · 662 Bytes
/
tox.ini
File metadata and controls
42 lines (38 loc) · 662 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
[tox]
isolated_build = true
envlist = py36, py37, py38, py39, lint, format
[gh-actions]
python =
3.9: py39
3.8: py38
3.7: py37
3.6: py36
[testenv:lint]
whitelist_externals =
isort
black
flake8
poetry
mkdocs
twine
extras =
test
doc
dev
commands =
isort bigraph
black bigraph tests
flake8 bigraph tests
poetry build
mkdocs build
twine check dist/*
[testenv]
whitelist_externals = pytest
extras =
test
passenv = *
setenv =
PYTHONPATH = {toxinidir}
PYTHONWARNINGS = ignore
commands =
pytest -s --cov=bigraph --cov-append --cov-report=xml --cov-report term-missing tests