summaryrefslogtreecommitdiff
path: root/packages/python-google-compute-engine/tox.ini
blob: 1e7c0b11e2edd7aca1661d2f4cd05f5df2ec6c5d (plain)
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
[tox]
envlist = py26,py27,py32,py33,py34,py35,py36,py37,pypy,pypy3

[testenv]
deps =
    py{35,py36,py37}: distro
    setuptools>=20
    pytest
    pytest-cov
    mock
    unittest2
commands =
  py.test \
    -v \
    --cov \
    --cov-config=.coveragerc \
    {posargs:.}
setenv =
    # Global configs cause unit tests to break.
    # Issue: travis-ci/travis-ci#5246
    BOTO_CONFIG=/tmp/fake

[testenv:py32]
# Coverage doesn't support py32, so run the tests without coverage reporting.
deps =
    pytest
    mock
commands =
  py.test \
    -v \
    {posargs:.}

[testenv:lint]
deps =
  flake8
  flake8-import-order
  setuptools>=20
commands =
  flake8 --import-order-style=google

[flake8]
# Temporarly disabling warnings until code is flake8 compliant.
# E111 indentation is not a multiple of four
# E114 indentation is not a multiple of four (comment)
# E121 continuation line under-indented for hanging indent
# E125 continuation line with same indent as next logical line
# E128 continuation line under-indented for visual indent
# E129 visually indented line with same indent as next logical line
# E226 missing whitespace around arithmetic operator
# E231 missing whitespace after ','
# E261 at least two spaces before inline comment
# E302 expected 2 blank lines, found 1
# E501 line too long
# F401 imported but unused
ignore = E111,E114,E121,E125,E128,E129,E226,E231,E261,E302,E501,F401,W503
exclude =
  .git,
  .tox,
  __pycache__,
  dist,
  env

# This section configures tox-travis.
# See https://github.com/ryanhiebert/tox-travis#advanced-configuration
[travis]
python =
  3.6: py36, lint