forked from peering-manager/peering-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
25 lines (19 loc) · 648 Bytes
/
Copy pathtox.ini
File metadata and controls
25 lines (19 loc) · 648 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
[tox]
skipsdist = true
envlist = py36,py37,py38
[testenv]
whitelist_externals = cp
deps =
-rrequirements.txt
coveralls
setenv =
PYTHONWARNINGS = module::DeprecationWarning
passenv = *
commands =
cp peering_manager/configuration.example.py peering_manager/configuration.py
coverage run --source=netbox,peering,peeringdb,peering_manager,users,utils --omit=*/apps.py,*/migrations/*,peering_manager/wsgi.py,peering_manager/settings.py,peering_manager/configuration.*,manage.py manage.py test
[testenv:black]
deps = black
basepython = python3.6
commands =
black --check netbox peering peering_manager peeringdb users utils