forked from ggiesen/napalm-dellos6
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
48 lines (36 loc) · 710 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
48
[tox]
envlist = py3{6,7,8},black,pylama
skip_missing_interpreters = true
[travis]
python =
3.6: py36,black,pylama
[travis:env]
TRAVIS_BUILD_STAGE_NAME =
Lint: black,pylama
Test: py3{6,7,8}
[testenv]
deps =
-rrequirements.txt
-rrequirements-dev.txt
passenv = *
commands =
py.test --cov=napalm_dellos6 --cov-report term-missing -vs --pylama {posargs}
[testenv:black]
deps = black==18.9b0
basepython = python3.6
commands =
black --check .
[testenv:pylama]
deps =
-rrequirements-dev.txt
basepython = python3.6
commands =
pylama .
[testenv:sphinx]
deps =
-rdocs/requirements.txt
basepython = python3.6
commands =
make doctest
whitelist_externals =
make