forked from ktbyers/netmiko
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
39 lines (30 loc) · 639 Bytes
/
tox.ini
File metadata and controls
39 lines (30 loc) · 639 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
[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-dev.txt
-rrequirements-genie.txt
passenv = *
commands =
py.test -v -s tests/test_import_netmiko.py
py.test -v -s tests/unit/test_base_connection.py
py.test -v -s tests/unit/test_utilities.py
[testenv:black]
deps = black==18.9b0
basepython = python3.6
commands =
black --check .
[testenv:pylama]
deps =
-rrequirements-dev.txt
basepython = python3.6
commands =
pylama .