diff options
Diffstat (limited to 'api')
-rw-r--r-- | api/.testr.conf | 3 | ||||
-rw-r--r-- | api/test-requirements.txt | 29 | ||||
-rw-r--r-- | api/tox.ini | 8 |
3 files changed, 34 insertions, 6 deletions
diff --git a/api/.testr.conf b/api/.testr.conf new file mode 100644 index 0000000..804da37 --- /dev/null +++ b/api/.testr.conf @@ -0,0 +1,3 @@ +[DEFAULT] +test_command=${PYTHON:-python} -m unittest discover $LISTOPT +test_list_option= diff --git a/api/test-requirements.txt b/api/test-requirements.txt new file mode 100644 index 0000000..788516f --- /dev/null +++ b/api/test-requirements.txt @@ -0,0 +1,29 @@ +Babel>=1.3 + +bandit>=0.17.3 +coverage>=3.6 +discover +fixtures>=0.3.14 +mox3>=0.7.0 +mock>=1.0 +sphinx>=1.1.2,!=1.2.0,!=1.3b1,<1.3 +requests>=2.2.0,!=2.4.0 +testrepository>=0.0.18 +testscenarios>=0.4 # Apache-2.0/BSD +testtools>=0.9.36,!=1.2.0 +psutil>=1.1.1,<2.0.0 +oslotest>=1.5.1,<1.6.0 # Apache-2.0 +# Optional packages that should be installed when testing +PyMySQL!=0.7.7,>=0.6.2 # MIT License +pysendfile==2.0.0 +qpid-python;python_version=='2.7' # Apache-2.0 + +# Documentation +oslosphinx>=2.5.0,<2.6.0 # Apache-2.0 + +#flake8 +pyflakes!=1.2.0,!=1.2.1,!=1.2.2,<1.4.0,>=0.8.1 +configparser +mccabe<0.6.0,>=0.5.0 +pycodestyle<2.3.0,>=2.0.0 +flake8 diff --git a/api/tox.ini b/api/tox.ini index 5b5d52f..f5c9d10 100644 --- a/api/tox.ini +++ b/api/tox.ini @@ -9,7 +9,7 @@ usedevelop = True install_command = pip install -U {opts} {packages} deps = -r{toxinidir}/requirements.txt -r{toxinidir}/test-requirements.txt -commands = lockutils-wrapper python setup.py testr --slowest --testr-args='{posargs}' +commands = python setup.py testr --slowest --testr-args='{posargs}' whitelist_externals = bash [tox:jenkins] @@ -18,8 +18,6 @@ downloadcache = ~/cache/pip [testenv:pep8] commands = flake8 {posargs} - # Check that .po and .pot files are valid: - bash -c "find escalator -type f -regex '.*\.pot?' -print0|xargs -0 -n 1 msgfmt --check-format -o /dev/null" [testenv:cover] setenv = VIRTUAL_ENV={envdir} @@ -39,12 +37,10 @@ commands = python setup.py build_sphinx # TODO(dmllr): Analyze or fix the warnings blacklisted below # E711 comparison to None should be 'if cond is not None:' # E712 comparison to True should be 'if cond is True:' or 'if cond:' -# H302 import only modules -# H402 one line docstring needs punctuation. # H404 multi line docstring should start with a summary # H405 multi line docstring summary not separated with an empty line # H904 Wrap long lines in parentheses instead of a backslash -ignore = E711,E712,H302,H402,H404,H405,H904,F841,F821,E265,F812,F402,E226,E731 +ignore = E711,E712,H404,H405,H904,F841,F821,E265,F812,F402,E226,E731 exclude = .venv,.git,.tox,dist,doc,etc,*escalator/locale*,*openstack/common*,*lib/python*,*egg,build,escalator/i18n.py [hacking] |