forked from openshift/openshift-restclient-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
87 lines (81 loc) · 3.04 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[tox]
envlist =
py{27,35}-{lint}
py{27,35}-openshift{latest,311,310,39,37,36,15,14,13}-unit
py{27,35}-openshift{latest,311,310,39}-dynamic-functional
[testenv]
usedevelop = True
setenv =
openshift13: openshift_version=v1.3.3
openshift14: openshift_version=v1.4.1
openshift15: openshift_version=v1.5.1
openshift36: openshift_version=v3.6.0
openshift37: openshift_version=v3.7.0
openshift39: openshift_version=v3.9.0
openshift310: openshift_version=v3.10.0
openshift311: openshift_version=v3.11.0
deps =
-rrequirements.txt
-rtest-requirements.txt
py35-lint: flake8-bugbear
whitelist_externals =
/bin/bash
/bin/git
commands =
docs: python setup.py build_sphinx
lint: flake8
unit: pytest test/unit -v -r s --openshift-version={env:openshift_version:latest}
dynamic-functional: pytest test/functional/dynamic -v -r s --openshift-version={env:openshift_version:latest}
[travis:env]
TEST_SUITE =
lint: lint
unit: unit
dynamic-functional: dynamic-functional
OPENSHIFT_VERSION =
latest: openshiftlatest
3.11: openshift311
3.10: openshift310
3.9: openshift39
3.7: openshift37
3.6: openshift36
1.5: openshift15
1.4: openshift14
1.3: openshift13
[flake8]
# These are things that the devs don't agree make the code more readable
# https://github.com/ansible/proposals/issues/50
# E123 closing bracket does not match indentation of opening bracket's line
# E124 closing bracket does not match visual indentation
# E127 continuation line over-indented for visual indent
# E128 continuation line under-indented for visual indent
# E201 whitespace after '['
# E202 whitespace before ']'
# E203 whitespace before ','
# E221 multiple spaces before operator
# E222 multiple spaces after operator
# E225 missing whitespace around operator
# E226 missing whitespace around arithmetic operator
# E227 missing whitespace around bitwise or shift operator
# E228 missing whitespace around modulo operator
# E231 missing whitespace after ','
# E241 multiple spaces after ','
# E251 unexpected spaces around keyword / parameter equals
# E261 at least two spaces before inline comment
# E262 inline comment should start with '# '
# E265 block comment should start with '# '
# E266 too many leading '#' for block comment
# E301 expected 1 blank line, found 0
# E302 expected 2 blank lines, found 1
# E303 too many blank lines (3)
# E402 module level import not at top of file
# E502 the backslash is redundant between brackets
# E713 test for membership should be 'not in'
# E731 do not assign a lambda expression, use a def
# W391 blank line at end of file
# W503 line break before binary operator
# The following matches github.com/ansible/ansible/tox.ini
ignore = E123,E124,E127,E128,E201,E202,E203,E211,E221,E222,E225,E226,E228,E227,E231,E241,E251,E261,E262,E265,E266,E301,E302,E303,E402,E502,E713,E731,W391,W503
# Matches line length set at github.com/ansible/ansible/tox.ini
max-line-length = 160
# Not worrying about style in the following
exclude = .tox/*,test/*,venv*/*,_modules/*,build/*,scripts/*