blob: 29df1ca474bc4f7f1223141a919ba4bb0a75d94b [file] [log] [blame]
Michael Johnson34139b02017-03-15 10:31:10 -07001[tox]
Takashi Kajinamia6ccdc92022-05-22 22:31:33 +09002minversion = 3.18.0
Carlos Goncalves436dd9f2019-02-12 22:08:00 +01003envlist = pep8
Brian Haley47e45892020-05-19 15:56:11 -04004ignore_basepython_conflict = True
Michael Johnson34139b02017-03-15 10:31:10 -07005
6[testenv]
Brian Haley47e45892020-05-19 15:56:11 -04007basepython = python3
Michael Johnson34139b02017-03-15 10:31:10 -07008usedevelop = True
Michael Johnsonf298ed02019-06-28 16:00:38 -07009install_command = pip install {opts} {packages}
Michael Johnson34139b02017-03-15 10:31:10 -070010setenv =
11 VIRTUAL_ENV={envdir}
12 PYTHONWARNINGS=default::DeprecationWarning
Michael Johnsonf298ed02019-06-28 16:00:38 -070013deps = -c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master}
14 -r{toxinidir}/test-requirements.txt
Michael Johnson0f28a482018-05-23 16:22:45 -070015commands =
16 stestr run {posargs}
17 stestr slowest
Michael Johnson34139b02017-03-15 10:31:10 -070018
19[testenv:pep8]
Michael Johnson46658f22020-09-13 10:38:35 -070020commands =
21 flake8
22 check-uuid --package octavia_tempest_plugin
23
24[testenv:uuidgen]
25commands = check-uuid --fix --package octavia_tempest_plugin
Michael Johnson34139b02017-03-15 10:31:10 -070026
27[testenv:venv]
28commands = {posargs}
29
30[testenv:cover]
Michael Johnson0f28a482018-05-23 16:22:45 -070031setenv =
32 {[testenv]setenv}
33 PYTHON=coverage run --source octavia_tempest_plugin --parallel-mode
Takashi Kajinamia6ccdc92022-05-22 22:31:33 +090034allowlist_externals =
Michael Johnson0f28a482018-05-23 16:22:45 -070035 find
36commands =
37 find octavia_tempest_plugin -type f -name "*.pyc" -delete
38 coverage erase
39 stestr run {posargs}
40 coverage combine
41 coverage html -d cover
42 coverage xml -o cover/coverage.xml
Michael Johnson34139b02017-03-15 10:31:10 -070043
44[testenv:docs]
Jude Cross986e3f52017-07-24 14:57:20 -070045deps =
Michael Johnsonf298ed02019-06-28 16:00:38 -070046 -c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master}
Michael Johnsona5074252020-06-30 10:28:09 -070047 -r{toxinidir}/test-requirements.txt
Jude Cross986e3f52017-07-24 14:57:20 -070048 -r{toxinidir}/doc/requirements.txt
Takashi Kajinamia6ccdc92022-05-22 22:31:33 +090049allowlist_externals = rm
Jude Cross986e3f52017-07-24 14:57:20 -070050commands =
51 rm -rf doc/build
52 sphinx-build -W -b html doc/source doc/build/html
Michael Johnson34139b02017-03-15 10:31:10 -070053
Michael Johnson791fefb2019-09-13 10:48:05 -070054[testenv:pdf-docs]
Michael Johnson791fefb2019-09-13 10:48:05 -070055deps = {[testenv:docs]deps}
Takashi Kajinamia6ccdc92022-05-22 22:31:33 +090056allowlist_externals =
Michael Johnson791fefb2019-09-13 10:48:05 -070057 make
58 rm
59commands =
60 rm -rf doc/build/pdf
61 sphinx-build -W -b latex doc/source doc/build/pdf
62 make -C doc/build/pdf
63
Michael Johnson34139b02017-03-15 10:31:10 -070064[testenv:releasenotes]
Jude Cross986e3f52017-07-24 14:57:20 -070065deps =
Michael Johnsonf298ed02019-06-28 16:00:38 -070066 -c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master}
Jude Cross986e3f52017-07-24 14:57:20 -070067 -r{toxinidir}/requirements.txt
68 -r{toxinidir}/doc/requirements.txt
Michael Johnson34139b02017-03-15 10:31:10 -070069commands =
70 sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
71
72[testenv:debug]
73commands = oslo_debug_helper {posargs}
74
75[flake8]
Michael Johnson34139b02017-03-15 10:31:10 -070076show-source = True
Michael Johnson34139b02017-03-15 10:31:10 -070077builtins = _
78exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build
Brian Haley0ae7f102020-03-20 11:14:44 -040079import-order-style = pep8
80# [H106]: Don't put vim configuration in source files
81# [H203]: Use assertIs(Not)None to check for None
82# [H204]: Use assert(Not)Equal to check for equality
83# [H205]: Use assert(Greater|Less)(Equal) for comparison
84# [H904]: Delay string interpolations at logging calls
85enable-extensions=H106,H203,H204,H205,H904
Jude Cross986e3f52017-07-24 14:57:20 -070086
Michael Johnsona5074252020-06-30 10:28:09 -070087[flake8:local-plugins]
88extension =
89 O316 = checks:assert_true_instance
90 O318 = checks:assert_equal_or_not_none
91 O323 = checks:assert_equal_true_or_false
92 O324 = checks:no_mutable_default_args
93 O338 = checks:assert_equal_in
94 O339 = checks:no_log_warn
95 O341 = checks:no_translate_logs
96 O342 = checks:check_raised_localized_exceptions
97 O345 = checks:check_no_eventlet_imports
98 O346 = checks:check_line_continuation_no_backslash
99 O347 = checks:revert_must_have_kwargs
100 O348 = checks:check_no_logging_imports
101 O349 = checks:check_no_import_mock
102paths =
103 ./octavia_tempest_plugin/hacking
104
Jude Cross986e3f52017-07-24 14:57:20 -0700105[testenv:genconfig]
Takashi Kajinamia6ccdc92022-05-22 22:31:33 +0900106allowlist_externals = mkdir
Jude Cross986e3f52017-07-24 14:57:20 -0700107commands =
108 mkdir -p etc
109 oslo-config-generator --output-file etc/octavia.tempest.conf.sample \
110 --namespace tempest.config
Brian Haley47e45892020-05-19 15:56:11 -0400111
112[testenv:requirements]
113deps =
114 -egit+https://opendev.org/openstack/requirements#egg=openstack-requirements
Takashi Kajinamia6ccdc92022-05-22 22:31:33 +0900115allowlist_externals = sh
Brian Haley47e45892020-05-19 15:56:11 -0400116commands =
117 sh -c '{envdir}/src/openstack-requirements/playbooks/files/project-requirements-change.py --req {envdir}/src/openstack-requirements --local {toxinidir} master'