~ubuntu-branches/ubuntu/vivid/ironic/vivid-updates

« back to all changes in this revision

Viewing changes to tox.ini

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2015-03-30 11:14:57 UTC
  • mfrom: (1.2.6)
  • Revision ID: package-import@ubuntu.com-20150330111457-kr4ju3guf22m4vbz
Tags: 2015.1~b3-0ubuntu1
* New upstream release.
  + d/control: 
    - Align with upstream dependencies.
    - Add dh-python to build-dependencies.
    - Add psmisc as a dependency. (LP: #1358820)
  + d/p/fix-requirements.patch: Rediffed.
  + d/ironic-conductor.init.in: Fixed typos in LSB headers,
    thanks to JJ Asghar. (LP: #1429962)

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
install_command = pip install -U {opts} {packages}
9
9
setenv = VIRTUAL_ENV={envdir}
10
10
         PYTHONDONTWRITEBYTECODE = 1
 
11
         LANGUAGE=en_US
11
12
deps = -r{toxinidir}/requirements.txt
12
13
       -r{toxinidir}/test-requirements.txt
13
14
whitelist_externals = bash
25
26
 
26
27
[testenv:cover]
27
28
setenv = VIRTUAL_ENV={envdir}
 
29
         LANGUAGE=en_US
28
30
commands =
29
31
  python setup.py testr --coverage {posargs}
30
32
 
48
50
 
49
51
[testenv:venv]
50
52
setenv = PYTHONHASHSEED=0
 
53
         LANGUAGE=en_US
51
54
commands = {posargs}
52
55
 
53
56
[flake8]
54
57
# E711: ignored because it is normal to use "column == None" in sqlalchemy
55
 
ignore = E12,E711
 
58
ignore = E123,E126,E127,E128,E129,E711
56
59
exclude =  .venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build,tools,*ironic/nova*
57
60
max-complexity=17
58
61