Jay Pipes | a6aa5f2 | 2012-07-24 19:40:29 -0400 | [diff] [blame] | 1 | [tox] |
Ghanshyam Mann | 551e8d7 | 2020-02-04 09:04:30 -0600 | [diff] [blame] | 2 | envlist = pep8,py36,py37,bashate,pip-check-reqs |
Ghanshyam | 1c680fd | 2020-01-20 11:43:29 -0600 | [diff] [blame] | 3 | minversion = 3.1.1 |
Matthew Treinish | 7228e11 | 2013-10-03 14:58:54 +0000 | [diff] [blame] | 4 | skipsdist = True |
Ghanshyam | 1c680fd | 2020-01-20 11:43:29 -0600 | [diff] [blame] | 5 | ignore_basepython_conflict = True |
Jay Pipes | a6aa5f2 | 2012-07-24 19:40:29 -0400 | [diff] [blame] | 6 | |
Matthew Treinish | 5b7626a | 2014-09-23 17:39:38 -0400 | [diff] [blame] | 7 | [tempestenv] |
Lee Yarwood | bc9fe8e | 2020-01-28 21:27:59 +0000 | [diff] [blame] | 8 | basepython = python3 |
Joe Gordon | 9f1612e | 2015-01-28 11:23:43 -0800 | [diff] [blame] | 9 | sitepackages = False |
Masayuki Igawa | d81d3ce | 2016-04-20 15:00:54 +0900 | [diff] [blame] | 10 | setenv = |
| 11 | VIRTUAL_ENV={envdir} |
| 12 | OS_TEST_PATH=./tempest/test_discover |
Ghanshyam | 40b51c5 | 2020-01-19 19:31:11 -0600 | [diff] [blame^] | 13 | OS_TEST_TIMEOUT={env:OS_TEST_TIMEOUT:1200} |
Masayuki Igawa | d81d3ce | 2016-04-20 15:00:54 +0900 | [diff] [blame] | 14 | deps = |
caoyuan | 349ba75 | 2019-04-23 19:40:06 +0800 | [diff] [blame] | 15 | -c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master} |
Masayuki Igawa | d81d3ce | 2016-04-20 15:00:54 +0900 | [diff] [blame] | 16 | -r{toxinidir}/requirements.txt |
Matthew Treinish | 5b7626a | 2014-09-23 17:39:38 -0400 | [diff] [blame] | 17 | |
| 18 | [testenv] |
Ghanshyam | 1c680fd | 2020-01-20 11:43:29 -0600 | [diff] [blame] | 19 | basepython = python3 |
Masayuki Igawa | d81d3ce | 2016-04-20 15:00:54 +0900 | [diff] [blame] | 20 | setenv = |
| 21 | VIRTUAL_ENV={envdir} |
Andrea Frittoli | 8f018cb | 2017-08-11 14:36:18 +0100 | [diff] [blame] | 22 | OS_LOG_CAPTURE=1 |
Matthew Treinish | 5cc9289 | 2018-02-22 15:53:47 -0500 | [diff] [blame] | 23 | OS_STDOUT_CAPTURE=1 |
| 24 | OS_STDERR_CAPTURE=1 |
| 25 | OS_TEST_TIMEOUT=160 |
Stephen Finucane | a6353c4 | 2018-07-06 14:00:36 +0100 | [diff] [blame] | 26 | PYTHONWARNINGS=default::DeprecationWarning,ignore::DeprecationWarning:distutils,ignore::DeprecationWarning:site |
Chris Dent | 9b4c50c | 2018-10-03 10:24:40 +0100 | [diff] [blame] | 27 | passenv = OS_STDOUT_CAPTURE OS_STDERR_CAPTURE OS_TEST_TIMEOUT OS_TEST_LOCK_PATH TEMPEST_CONFIG TEMPEST_CONFIG_DIR http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY ZUUL_CACHE_DIR REQUIREMENTS_PIP_LOCATION GENERATE_TEMPEST_PLUGIN_LIST GABBI_TEMPEST_PATH |
Matthew Treinish | 7228e11 | 2013-10-03 14:58:54 +0000 | [diff] [blame] | 28 | usedevelop = True |
Andreas Jaeger | 880d943 | 2017-12-01 07:38:54 +0100 | [diff] [blame] | 29 | install_command = pip install {opts} {packages} |
Matthew Treinish | 5b7626a | 2014-09-23 17:39:38 -0400 | [diff] [blame] | 30 | whitelist_externals = * |
Masayuki Igawa | d81d3ce | 2016-04-20 15:00:54 +0900 | [diff] [blame] | 31 | deps = |
caoyuan | 349ba75 | 2019-04-23 19:40:06 +0800 | [diff] [blame] | 32 | -c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master} |
Masayuki Igawa | d81d3ce | 2016-04-20 15:00:54 +0900 | [diff] [blame] | 33 | -r{toxinidir}/requirements.txt |
| 34 | -r{toxinidir}/test-requirements.txt |
Sean Dague | c7b4d88 | 2014-11-25 08:18:23 -0500 | [diff] [blame] | 35 | commands = |
Masayuki Igawa | d81d3ce | 2016-04-20 15:00:54 +0900 | [diff] [blame] | 36 | find . -type f -name "*.pyc" -delete |
Masayuki Igawa | d0b8ebd | 2017-09-14 14:51:25 -0600 | [diff] [blame] | 37 | stestr --test-path ./tempest/tests run {posargs} |
Matthew Treinish | 12fdf4b | 2013-10-03 15:20:09 +0000 | [diff] [blame] | 38 | |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 39 | [testenv:genconfig] |
Matthew Treinish | bdef1c7 | 2016-06-21 18:06:49 -0400 | [diff] [blame] | 40 | commands = oslo-config-generator --config-file tempest/cmd/config-generator.tempest.conf |
Jon Grimm | 270bd7f | 2014-08-05 18:11:29 +0000 | [diff] [blame] | 41 | |
Matthew Treinish | b2f5cad | 2014-01-07 21:54:55 +0000 | [diff] [blame] | 42 | [testenv:cover] |
Matthew Treinish | 069d828 | 2017-11-28 19:19:27 -0500 | [diff] [blame] | 43 | setenv = |
| 44 | {[testenv]setenv} |
| 45 | PYTHON=coverage run --source tempest --parallel-mode |
| 46 | commands = |
| 47 | coverage erase |
| 48 | find . -type f -name "*.pyc" -delete |
| 49 | stestr --test-path ./tempest/tests run {posargs} |
| 50 | coverage combine |
| 51 | coverage html -d cover |
| 52 | coverage xml -o cover/coverage.xml |
| 53 | coverage report |
Matthew Treinish | b2f5cad | 2014-01-07 21:54:55 +0000 | [diff] [blame] | 54 | |
Manik Bindlish | 8a7aaa5 | 2018-11-30 10:22:30 +0000 | [diff] [blame] | 55 | [testenv:debug] |
Manik Bindlish | 8a7aaa5 | 2018-11-30 10:22:30 +0000 | [diff] [blame] | 56 | commands = oslo_debug_helper -t tempest/tests {posargs} |
| 57 | |
Giampaolo Lauria | 7a3e004 | 2013-06-07 14:59:19 -0400 | [diff] [blame] | 58 | [testenv:all] |
Matthew Treinish | 0e25a90 | 2016-04-29 16:38:51 -0400 | [diff] [blame] | 59 | envdir = .tox/tempest |
Matthew Treinish | 5b7626a | 2014-09-23 17:39:38 -0400 | [diff] [blame] | 60 | sitepackages = {[tempestenv]sitepackages} |
Ghanshyam | 1c680fd | 2020-01-20 11:43:29 -0600 | [diff] [blame] | 61 | basepython = {[tempestenv]basepython} |
David Kranz | f9695d2 | 2014-10-27 11:43:52 -0400 | [diff] [blame] | 62 | # 'all' includes slow tests |
Masayuki Igawa | d81d3ce | 2016-04-20 15:00:54 +0900 | [diff] [blame] | 63 | setenv = |
| 64 | {[tempestenv]setenv} |
Matthew Treinish | 5b7626a | 2014-09-23 17:39:38 -0400 | [diff] [blame] | 65 | deps = {[tempestenv]deps} |
Giampaolo Lauria | 7a3e004 | 2013-06-07 14:59:19 -0400 | [diff] [blame] | 66 | commands = |
Masayuki Igawa | d81d3ce | 2016-04-20 15:00:54 +0900 | [diff] [blame] | 67 | find . -type f -name "*.pyc" -delete |
Masayuki Igawa | fe0de68 | 2019-05-21 17:04:28 +0900 | [diff] [blame] | 68 | tempest run --regex {posargs:''} |
Matthew Treinish | 87af1bb | 2013-06-17 15:29:10 -0400 | [diff] [blame] | 69 | |
Marc Koderer | c2f9b3a | 2015-07-27 15:19:08 +0200 | [diff] [blame] | 70 | [testenv:all-plugin] |
Andrea Frittoli | 35d12ca | 2018-02-13 15:42:25 +0000 | [diff] [blame] | 71 | # DEPRECATED |
| 72 | # NOTE(andreaf) The all-plugin tox env uses sitepackages |
| 73 | # so that plugins installed outsite of Tempest virtual environment |
| 74 | # can be discovered. After the implementation during the Queens |
| 75 | # release cycle of the goal of moving Tempest plugins in dedicated |
| 76 | # git repos, this environment should not be used anymore. "all" |
| 77 | # should be used instead with the appropriate regex filtering. |
| 78 | sitepackages = True |
| 79 | # 'all' includes slow tests |
| 80 | setenv = |
| 81 | {[tempestenv]setenv} |
Ghanshyam | 1c680fd | 2020-01-20 11:43:29 -0600 | [diff] [blame] | 82 | basepython = {[tempestenv]basepython} |
Andrea Frittoli | 35d12ca | 2018-02-13 15:42:25 +0000 | [diff] [blame] | 83 | deps = {[tempestenv]deps} |
| 84 | commands = |
| 85 | echo "WARNING: The all-plugin env is deprecated and will be removed" |
| 86 | echo "WARNING Please use the 'all' environment for Tempest plugins." |
| 87 | find . -type f -name "*.pyc" -delete |
Masayuki Igawa | fe0de68 | 2019-05-21 17:04:28 +0900 | [diff] [blame] | 88 | tempest run --regex {posargs:''} |
Andrea Frittoli | 35d12ca | 2018-02-13 15:42:25 +0000 | [diff] [blame] | 89 | |
| 90 | [testenv:all-site-packages] |
Marc Koderer | c2f9b3a | 2015-07-27 15:19:08 +0200 | [diff] [blame] | 91 | sitepackages = True |
| 92 | # 'all' includes slow tests |
Masayuki Igawa | d81d3ce | 2016-04-20 15:00:54 +0900 | [diff] [blame] | 93 | setenv = |
| 94 | {[tempestenv]setenv} |
Ghanshyam | 1c680fd | 2020-01-20 11:43:29 -0600 | [diff] [blame] | 95 | basepython = {[tempestenv]basepython} |
Marc Koderer | c2f9b3a | 2015-07-27 15:19:08 +0200 | [diff] [blame] | 96 | deps = {[tempestenv]deps} |
| 97 | commands = |
Masayuki Igawa | d81d3ce | 2016-04-20 15:00:54 +0900 | [diff] [blame] | 98 | find . -type f -name "*.pyc" -delete |
Masayuki Igawa | fe0de68 | 2019-05-21 17:04:28 +0900 | [diff] [blame] | 99 | tempest run --regex {posargs:''} |
Marc Koderer | c2f9b3a | 2015-07-27 15:19:08 +0200 | [diff] [blame] | 100 | |
Monty Taylor | 8d4c90c | 2013-05-02 14:33:18 -0400 | [diff] [blame] | 101 | [testenv:full] |
Matthew Treinish | 0e25a90 | 2016-04-29 16:38:51 -0400 | [diff] [blame] | 102 | envdir = .tox/tempest |
Matthew Treinish | 5b7626a | 2014-09-23 17:39:38 -0400 | [diff] [blame] | 103 | sitepackages = {[tempestenv]sitepackages} |
Ghanshyam | 1c680fd | 2020-01-20 11:43:29 -0600 | [diff] [blame] | 104 | basepython = {[tempestenv]basepython} |
Matthew Treinish | 5b7626a | 2014-09-23 17:39:38 -0400 | [diff] [blame] | 105 | setenv = {[tempestenv]setenv} |
| 106 | deps = {[tempestenv]deps} |
Matthew Treinish | 59eb0b2 | 2013-08-07 15:48:21 -0400 | [diff] [blame] | 107 | # The regex below is used to select which tests to run and exclude the slow tag: |
Masayuki Igawa | 8352204 | 2015-12-01 16:51:34 +0900 | [diff] [blame] | 108 | # See the testrepository bug: https://bugs.launchpad.net/testrepository/+bug/1208610 |
Masayuki Igawa | ac0b171 | 2018-03-09 16:20:42 +0900 | [diff] [blame] | 109 | # FIXME: We can replace it with the `--black-regex` option to exclude tests now. |
Matthew Treinish | 83d2ec4 | 2013-07-30 16:37:32 -0400 | [diff] [blame] | 110 | commands = |
Masayuki Igawa | d81d3ce | 2016-04-20 15:00:54 +0900 | [diff] [blame] | 111 | find . -type f -name "*.pyc" -delete |
Sean Dague | 49505df | 2017-03-01 11:35:58 -0500 | [diff] [blame] | 112 | tempest run --regex '(?!.*\[.*\bslow\b.*\])(^tempest\.api)' {posargs} |
| 113 | tempest run --combine --serial --regex '(?!.*\[.*\bslow\b.*\])(^tempest\.scenario)' {posargs} |
Matthew Treinish | 83d2ec4 | 2013-07-30 16:37:32 -0400 | [diff] [blame] | 114 | |
Attila Fazekas | 3f219f5 | 2018-03-01 16:50:10 +0000 | [diff] [blame] | 115 | [testenv:full-parallel] |
| 116 | envdir = .tox/tempest |
| 117 | sitepackages = {[tempestenv]sitepackages} |
Ghanshyam | 1c680fd | 2020-01-20 11:43:29 -0600 | [diff] [blame] | 118 | basepython = {[tempestenv]basepython} |
Attila Fazekas | 3f219f5 | 2018-03-01 16:50:10 +0000 | [diff] [blame] | 119 | setenv = {[tempestenv]setenv} |
| 120 | deps = {[tempestenv]deps} |
| 121 | # The regex below is used to select all tempest scenario and including the non slow api tests |
| 122 | commands = |
| 123 | find . -type f -name "*.pyc" -delete |
| 124 | tempest run --regex '(^tempest\.scenario.*)|(?!.*\[.*\bslow\b.*\])(^tempest\.api)' {posargs} |
| 125 | |
Ghanshyam | 5072a24 | 2019-07-03 14:40:53 +0000 | [diff] [blame] | 126 | [testenv:integrated-network] |
| 127 | envdir = .tox/tempest |
| 128 | sitepackages = {[tempestenv]sitepackages} |
Ghanshyam | 1c680fd | 2020-01-20 11:43:29 -0600 | [diff] [blame] | 129 | basepython = {[tempestenv]basepython} |
Ghanshyam | 5072a24 | 2019-07-03 14:40:53 +0000 | [diff] [blame] | 130 | setenv = {[tempestenv]setenv} |
| 131 | deps = {[tempestenv]deps} |
| 132 | # The regex below is used to select which tests to run and exclude the slow tag and |
| 133 | # tests listed in blacklist file: |
| 134 | commands = |
| 135 | find . -type f -name "*.pyc" -delete |
| 136 | tempest run --regex '(?!.*\[.*\bslow\b.*\])(^tempest\.api)' --blacklist_file ./tools/tempest-integrated-gate-networking-blacklist.txt {posargs} |
| 137 | tempest run --combine --serial --regex '(?!.*\[.*\bslow\b.*\])(^tempest\.scenario)' --blacklist_file ./tools/tempest-integrated-gate-networking-blacklist.txt {posargs} |
| 138 | |
Ghanshyam | ee7fd1f | 2019-07-05 09:36:57 +0000 | [diff] [blame] | 139 | [testenv:integrated-compute] |
| 140 | envdir = .tox/tempest |
| 141 | sitepackages = {[tempestenv]sitepackages} |
Ghanshyam | 1c680fd | 2020-01-20 11:43:29 -0600 | [diff] [blame] | 142 | basepython = {[tempestenv]basepython} |
Ghanshyam | ee7fd1f | 2019-07-05 09:36:57 +0000 | [diff] [blame] | 143 | setenv = {[tempestenv]setenv} |
| 144 | deps = {[tempestenv]deps} |
| 145 | # The regex below is used to select which tests to run and exclude the slow tag and |
| 146 | # tests listed in blacklist file: |
| 147 | commands = |
| 148 | find . -type f -name "*.pyc" -delete |
| 149 | tempest run --regex '(?!.*\[.*\bslow\b.*\])(^tempest\.api)' --blacklist_file ./tools/tempest-integrated-gate-compute-blacklist.txt {posargs} |
| 150 | tempest run --combine --serial --regex '(?!.*\[.*\bslow\b.*\])(^tempest\.scenario)' --blacklist_file ./tools/tempest-integrated-gate-compute-blacklist.txt {posargs} |
| 151 | |
Ghanshyam | 31609dc | 2019-07-05 09:23:37 +0000 | [diff] [blame] | 152 | [testenv:integrated-placement] |
| 153 | envdir = .tox/tempest |
| 154 | sitepackages = {[tempestenv]sitepackages} |
Ghanshyam | 1c680fd | 2020-01-20 11:43:29 -0600 | [diff] [blame] | 155 | basepython = {[tempestenv]basepython} |
Ghanshyam | 31609dc | 2019-07-05 09:23:37 +0000 | [diff] [blame] | 156 | setenv = {[tempestenv]setenv} |
| 157 | deps = {[tempestenv]deps} |
| 158 | # The regex below is used to select which tests to run and exclude the slow tag and |
| 159 | # tests listed in blacklist file: |
| 160 | commands = |
| 161 | find . -type f -name "*.pyc" -delete |
| 162 | tempest run --regex '(?!.*\[.*\bslow\b.*\])(^tempest\.api)' --blacklist_file ./tools/tempest-integrated-gate-placement-blacklist.txt {posargs} |
| 163 | tempest run --combine --serial --regex '(?!.*\[.*\bslow\b.*\])(^tempest\.scenario)' --blacklist_file ./tools/tempest-integrated-gate-placement-blacklist.txt {posargs} |
| 164 | |
Ghanshyam Mann | a699445 | 2019-07-05 08:43:23 +0000 | [diff] [blame] | 165 | [testenv:integrated-storage] |
| 166 | envdir = .tox/tempest |
| 167 | sitepackages = {[tempestenv]sitepackages} |
Ghanshyam | 1c680fd | 2020-01-20 11:43:29 -0600 | [diff] [blame] | 168 | basepython = {[tempestenv]basepython} |
Ghanshyam Mann | a699445 | 2019-07-05 08:43:23 +0000 | [diff] [blame] | 169 | setenv = {[tempestenv]setenv} |
| 170 | deps = {[tempestenv]deps} |
| 171 | # The regex below is used to select which tests to run and exclude the slow tag and |
| 172 | # tests listed in blacklist file: |
| 173 | commands = |
| 174 | find . -type f -name "*.pyc" -delete |
| 175 | tempest run --regex '(?!.*\[.*\bslow\b.*\])(^tempest\.api)' --blacklist_file ./tools/tempest-integrated-gate-storage-blacklist.txt {posargs} |
| 176 | tempest run --combine --serial --regex '(?!.*\[.*\bslow\b.*\])(^tempest\.scenario)' --blacklist_file ./tools/tempest-integrated-gate-storage-blacklist.txt {posargs} |
| 177 | |
Ghanshyam | 9535852 | 2019-07-05 08:58:32 +0000 | [diff] [blame] | 178 | [testenv:integrated-object-storage] |
| 179 | envdir = .tox/tempest |
| 180 | sitepackages = {[tempestenv]sitepackages} |
Ghanshyam | 1c680fd | 2020-01-20 11:43:29 -0600 | [diff] [blame] | 181 | basepython = {[tempestenv]basepython} |
Ghanshyam | 9535852 | 2019-07-05 08:58:32 +0000 | [diff] [blame] | 182 | setenv = {[tempestenv]setenv} |
| 183 | deps = {[tempestenv]deps} |
| 184 | # The regex below is used to select which tests to run and exclude the slow tag and |
| 185 | # tests listed in blacklist file: |
| 186 | commands = |
| 187 | find . -type f -name "*.pyc" -delete |
| 188 | tempest run --regex '(?!.*\[.*\bslow\b.*\])(^tempest\.api)' --blacklist_file ./tools/tempest-integrated-gate-object-storage-blacklist.txt {posargs} |
| 189 | tempest run --combine --serial --regex '(?!.*\[.*\bslow\b.*\])(^tempest\.scenario)' --blacklist_file ./tools/tempest-integrated-gate-object-storage-blacklist.txt {posargs} |
| 190 | |
Matthew Treinish | 99288cd | 2014-02-10 09:21:51 -0500 | [diff] [blame] | 191 | [testenv:full-serial] |
Matthew Treinish | 0e25a90 | 2016-04-29 16:38:51 -0400 | [diff] [blame] | 192 | envdir = .tox/tempest |
Matthew Treinish | 5b7626a | 2014-09-23 17:39:38 -0400 | [diff] [blame] | 193 | sitepackages = {[tempestenv]sitepackages} |
Ghanshyam | 1c680fd | 2020-01-20 11:43:29 -0600 | [diff] [blame] | 194 | basepython = {[tempestenv]basepython} |
Matthew Treinish | 5b7626a | 2014-09-23 17:39:38 -0400 | [diff] [blame] | 195 | setenv = {[tempestenv]setenv} |
| 196 | deps = {[tempestenv]deps} |
Matthew Treinish | 99288cd | 2014-02-10 09:21:51 -0500 | [diff] [blame] | 197 | # The regex below is used to select which tests to run and exclude the slow tag: |
Masayuki Igawa | 8352204 | 2015-12-01 16:51:34 +0900 | [diff] [blame] | 198 | # See the testrepository bug: https://bugs.launchpad.net/testrepository/+bug/1208610 |
Masayuki Igawa | ac0b171 | 2018-03-09 16:20:42 +0900 | [diff] [blame] | 199 | # FIXME: We can replace it with the `--black-regex` option to exclude tests now. |
Matthew Treinish | 99288cd | 2014-02-10 09:21:51 -0500 | [diff] [blame] | 200 | commands = |
Masayuki Igawa | d81d3ce | 2016-04-20 15:00:54 +0900 | [diff] [blame] | 201 | find . -type f -name "*.pyc" -delete |
Masayuki Igawa | 730f59b | 2016-09-21 11:47:32 +0200 | [diff] [blame] | 202 | tempest run --serial --regex '(?!.*\[.*\bslow\b.*\])(^tempest\.(api|scenario))' {posargs} |
Matthew Treinish | 99288cd | 2014-02-10 09:21:51 -0500 | [diff] [blame] | 203 | |
Andrea Frittoli | b838af9 | 2017-03-06 15:11:13 +0000 | [diff] [blame] | 204 | [testenv:scenario] |
| 205 | envdir = .tox/tempest |
| 206 | sitepackages = {[tempestenv]sitepackages} |
Ghanshyam | 1c680fd | 2020-01-20 11:43:29 -0600 | [diff] [blame] | 207 | basepython = {[tempestenv]basepython} |
Andrea Frittoli | b838af9 | 2017-03-06 15:11:13 +0000 | [diff] [blame] | 208 | setenv = {[tempestenv]setenv} |
| 209 | deps = {[tempestenv]deps} |
| 210 | # The regex below is used to select all scenario tests |
| 211 | commands = |
| 212 | find . -type f -name "*.pyc" -delete |
| 213 | tempest run --serial --regex '(^tempest\.scenario)' {posargs} |
| 214 | |
Monty Taylor | 8d4c90c | 2013-05-02 14:33:18 -0400 | [diff] [blame] | 215 | [testenv:smoke] |
Matthew Treinish | 0e25a90 | 2016-04-29 16:38:51 -0400 | [diff] [blame] | 216 | envdir = .tox/tempest |
Matthew Treinish | 5b7626a | 2014-09-23 17:39:38 -0400 | [diff] [blame] | 217 | sitepackages = {[tempestenv]sitepackages} |
Ghanshyam | 1c680fd | 2020-01-20 11:43:29 -0600 | [diff] [blame] | 218 | basepython = {[tempestenv]basepython} |
Matthew Treinish | 5b7626a | 2014-09-23 17:39:38 -0400 | [diff] [blame] | 219 | setenv = {[tempestenv]setenv} |
| 220 | deps = {[tempestenv]deps} |
Monty Taylor | 8d4c90c | 2013-05-02 14:33:18 -0400 | [diff] [blame] | 221 | commands = |
Masayuki Igawa | d81d3ce | 2016-04-20 15:00:54 +0900 | [diff] [blame] | 222 | find . -type f -name "*.pyc" -delete |
Matthew Treinish | 68c7871 | 2016-07-28 14:47:27 -0400 | [diff] [blame] | 223 | tempest run --regex '\[.*\bsmoke\b.*\]' {posargs} |
Monty Taylor | 8d4c90c | 2013-05-02 14:33:18 -0400 | [diff] [blame] | 224 | |
Joe Gordon | d279629 | 2013-11-14 12:55:55 -0800 | [diff] [blame] | 225 | [testenv:smoke-serial] |
Matthew Treinish | 0e25a90 | 2016-04-29 16:38:51 -0400 | [diff] [blame] | 226 | envdir = .tox/tempest |
Matthew Treinish | 5b7626a | 2014-09-23 17:39:38 -0400 | [diff] [blame] | 227 | sitepackages = {[tempestenv]sitepackages} |
Ghanshyam | 1c680fd | 2020-01-20 11:43:29 -0600 | [diff] [blame] | 228 | basepython = {[tempestenv]basepython} |
Matthew Treinish | 5b7626a | 2014-09-23 17:39:38 -0400 | [diff] [blame] | 229 | setenv = {[tempestenv]setenv} |
| 230 | deps = {[tempestenv]deps} |
Joe Gordon | d279629 | 2013-11-14 12:55:55 -0800 | [diff] [blame] | 231 | # This is still serial because neutron doesn't work with parallel. See: |
| 232 | # https://bugs.launchpad.net/tempest/+bug/1216076 so the neutron smoke |
| 233 | # job would fail if we moved it to parallel. |
| 234 | commands = |
Masayuki Igawa | d81d3ce | 2016-04-20 15:00:54 +0900 | [diff] [blame] | 235 | find . -type f -name "*.pyc" -delete |
Matthew Treinish | 68c7871 | 2016-07-28 14:47:27 -0400 | [diff] [blame] | 236 | tempest run --serial --regex '\[.*\bsmoke\b.*\]' {posargs} |
Joe Gordon | d279629 | 2013-11-14 12:55:55 -0800 | [diff] [blame] | 237 | |
ghanshyam | 10326c7 | 2018-08-01 08:53:00 +0000 | [diff] [blame] | 238 | [testenv:slow-serial] |
| 239 | envdir = .tox/tempest |
| 240 | sitepackages = {[tempestenv]sitepackages} |
Ghanshyam | 1c680fd | 2020-01-20 11:43:29 -0600 | [diff] [blame] | 241 | basepython = {[tempestenv]basepython} |
ghanshyam | 10326c7 | 2018-08-01 08:53:00 +0000 | [diff] [blame] | 242 | setenv = {[tempestenv]setenv} |
| 243 | deps = {[tempestenv]deps} |
| 244 | # The regex below is used to select the slow tagged tests to run serially: |
| 245 | commands = |
| 246 | find . -type f -name "*.pyc" -delete |
| 247 | tempest run --serial --regex '\[.*\bslow\b.*\]' {posargs} |
| 248 | |
Ghanshyam | a0b8ca4 | 2019-07-17 09:46:41 +0000 | [diff] [blame] | 249 | [testenv:ipv6-only] |
| 250 | envdir = .tox/tempest |
| 251 | sitepackages = {[tempestenv]sitepackages} |
Ghanshyam | 1c680fd | 2020-01-20 11:43:29 -0600 | [diff] [blame] | 252 | basepython = {[tempestenv]basepython} |
Ghanshyam | a0b8ca4 | 2019-07-17 09:46:41 +0000 | [diff] [blame] | 253 | setenv = {[tempestenv]setenv} |
| 254 | deps = {[tempestenv]deps} |
| 255 | # Run only smoke and ipv6 tests. This env is used to tests |
| 256 | # the ipv6 deployments and basic tests run fine so that we can |
| 257 | # verify that services listen on IPv6 address. |
| 258 | commands = |
| 259 | find . -type f -name "*.pyc" -delete |
| 260 | tempest run --regex '\[.*\bsmoke|ipv6|test_network_v6\b.*\]' {posargs} |
| 261 | |
Sean Dague | b56052b | 2013-05-21 17:57:41 -0400 | [diff] [blame] | 262 | [testenv:venv] |
Matt Riedemann | d5e9282 | 2018-01-25 11:25:57 -0500 | [diff] [blame] | 263 | deps = |
caoyuan | 349ba75 | 2019-04-23 19:40:06 +0800 | [diff] [blame] | 264 | -c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master} |
Matt Riedemann | d5e9282 | 2018-01-25 11:25:57 -0500 | [diff] [blame] | 265 | -r{toxinidir}/requirements.txt |
| 266 | -r{toxinidir}/doc/requirements.txt |
Sean Dague | b56052b | 2013-05-21 17:57:41 -0400 | [diff] [blame] | 267 | commands = {posargs} |
Sean Dague | b56052b | 2013-05-21 17:57:41 -0400 | [diff] [blame] | 268 | |
Matthew Treinish | 0e25a90 | 2016-04-29 16:38:51 -0400 | [diff] [blame] | 269 | [testenv:venv-tempest] |
| 270 | envdir = .tox/tempest |
| 271 | sitepackages = {[tempestenv]sitepackages} |
Ghanshyam | 1c680fd | 2020-01-20 11:43:29 -0600 | [diff] [blame] | 272 | basepython = {[tempestenv]basepython} |
Matthew Treinish | 0e25a90 | 2016-04-29 16:38:51 -0400 | [diff] [blame] | 273 | setenv = {[tempestenv]setenv} |
| 274 | deps = {[tempestenv]deps} |
| 275 | commands = {posargs} |
| 276 | |
Matthew Treinish | 8bd013e | 2014-06-18 21:58:32 -0400 | [diff] [blame] | 277 | [testenv:docs] |
junboli | 173b11c | 2018-01-15 11:25:35 +0800 | [diff] [blame] | 278 | deps = |
caoyuan | 349ba75 | 2019-04-23 19:40:06 +0800 | [diff] [blame] | 279 | -c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master} |
junboli | 173b11c | 2018-01-15 11:25:35 +0800 | [diff] [blame] | 280 | -r{toxinidir}/requirements.txt |
| 281 | -r{toxinidir}/doc/requirements.txt |
Mathew Odden | b389faa | 2015-07-30 20:24:08 +0000 | [diff] [blame] | 282 | commands = |
junboli | 173b11c | 2018-01-15 11:25:35 +0800 | [diff] [blame] | 283 | rm -rf doc/build |
Ihar Hrachyshka | 8032b2e | 2017-11-27 14:16:59 -0800 | [diff] [blame] | 284 | sphinx-build -W -b html doc/source doc/build/html |
junboli | 173b11c | 2018-01-15 11:25:35 +0800 | [diff] [blame] | 285 | whitelist_externals = rm |
Matthew Treinish | 8bd013e | 2014-06-18 21:58:32 -0400 | [diff] [blame] | 286 | |
Masayuki Igawa | 7e4ef4c | 2019-07-03 17:17:44 +0900 | [diff] [blame] | 287 | [testenv:pdf-docs] |
Masayuki Igawa | 7e4ef4c | 2019-07-03 17:17:44 +0900 | [diff] [blame] | 288 | deps = {[testenv:docs]deps} |
| 289 | whitelist_externals = |
| 290 | make |
| 291 | commands = |
| 292 | sphinx-build -W -b latex doc/source doc/build/pdf |
| 293 | make -C doc/build/pdf |
| 294 | |
Jay Pipes | a6aa5f2 | 2012-07-24 19:40:29 -0400 | [diff] [blame] | 295 | [testenv:pep8] |
afazekas | 40fcb9b | 2019-03-08 11:25:11 +0100 | [diff] [blame] | 296 | deps = |
Attila Fazekas | c07edb5 | 2019-03-17 15:38:03 +0100 | [diff] [blame] | 297 | -r{toxinidir}/test-requirements.txt |
afazekas | 40fcb9b | 2019-03-08 11:25:11 +0100 | [diff] [blame] | 298 | autopep8 |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 299 | commands = |
afazekas | 40fcb9b | 2019-03-08 11:25:11 +0100 | [diff] [blame] | 300 | autopep8 --exit-code --max-line-length=79 --experimental --diff -r tempest setup.py |
Masayuki Igawa | d81d3ce | 2016-04-20 15:00:54 +0900 | [diff] [blame] | 301 | flake8 {posargs} |
| 302 | check-uuid |
Matthew Treinish | 3d46811 | 2013-10-24 21:49:14 +0000 | [diff] [blame] | 303 | |
afazekas | 40fcb9b | 2019-03-08 11:25:11 +0100 | [diff] [blame] | 304 | [testenv:autopep8] |
| 305 | deps = autopep8 |
afazekas | 40fcb9b | 2019-03-08 11:25:11 +0100 | [diff] [blame] | 306 | commands = |
Attila Fazekas | c07edb5 | 2019-03-17 15:38:03 +0100 | [diff] [blame] | 307 | {toxinidir}/tools/format.sh |
afazekas | 40fcb9b | 2019-03-08 11:25:11 +0100 | [diff] [blame] | 308 | |
Chris Hoge | 7579c1a | 2015-02-26 14:12:15 -0800 | [diff] [blame] | 309 | [testenv:uuidgen] |
| 310 | commands = |
Masayuki Igawa | d81d3ce | 2016-04-20 15:00:54 +0900 | [diff] [blame] | 311 | check-uuid --fix |
Chris Hoge | 296558c | 2015-02-19 00:29:49 -0600 | [diff] [blame] | 312 | |
Giampaolo Lauria | 1b837ce | 2013-05-01 11:22:07 -0400 | [diff] [blame] | 313 | [hacking] |
Giampaolo Lauria | d50c27d | 2013-05-23 15:23:12 -0400 | [diff] [blame] | 314 | local-check-factory = tempest.hacking.checks.factory |
Matthew Treinish | 2b6db0c | 2014-05-17 10:42:36 -0400 | [diff] [blame] | 315 | import_exceptions = tempest.services |
Giampaolo Lauria | 1b837ce | 2013-05-01 11:22:07 -0400 | [diff] [blame] | 316 | |
Monty Taylor | b2ca5ca | 2013-04-28 18:00:21 -0700 | [diff] [blame] | 317 | [flake8] |
caoyuan | 349ba75 | 2019-04-23 19:40:06 +0800 | [diff] [blame] | 318 | # E125 is a won't fix until https://github.com/jcrocholl/pep8/issues/126 is resolved. For further detail see https://review.opendev.org/#/c/36788/ |
Matthew Treinish | 96e9e88 | 2014-06-09 18:37:19 -0400 | [diff] [blame] | 319 | # E123 skipped because it is ignored by default in the default pep8 |
Matthew Treinish | 1d14c54 | 2014-06-17 20:25:40 -0400 | [diff] [blame] | 320 | # E129 skipped because it is too limiting when combined with other rules |
Stephen Finucane | fc42cc6 | 2018-07-06 13:39:55 +0100 | [diff] [blame] | 321 | # W504 skipped because it is overeager and unnecessary |
| 322 | ignore = E125,E123,E129,W504 |
Monty Taylor | b2ca5ca | 2013-04-28 18:00:21 -0700 | [diff] [blame] | 323 | show-source = True |
junboli | 8bd00e3 | 2017-08-22 17:06:15 +0800 | [diff] [blame] | 324 | exclude = .git,.venv,.tox,dist,doc,*egg,build |
Jordan Pittier | 525ec71 | 2016-12-07 17:51:26 +0100 | [diff] [blame] | 325 | enable-extensions = H106,H203,H904 |
Masayuki Igawa | 134d9f7 | 2017-02-10 18:05:26 +0900 | [diff] [blame] | 326 | import-order-style = pep8 |
Andrea Frittoli (andreaf) | 897ecfb | 2016-02-23 10:12:48 -0500 | [diff] [blame] | 327 | |
| 328 | [testenv:releasenotes] |
junboli | 173b11c | 2018-01-15 11:25:35 +0800 | [diff] [blame] | 329 | deps = |
caoyuan | 349ba75 | 2019-04-23 19:40:06 +0800 | [diff] [blame] | 330 | -c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/master} |
junboli | 173b11c | 2018-01-15 11:25:35 +0800 | [diff] [blame] | 331 | -r{toxinidir}/requirements.txt |
| 332 | -r{toxinidir}/doc/requirements.txt |
junboli | 8bd00e3 | 2017-08-22 17:06:15 +0800 | [diff] [blame] | 333 | commands = |
junboli | 173b11c | 2018-01-15 11:25:35 +0800 | [diff] [blame] | 334 | rm -rf releasenotes/build |
| 335 | sphinx-build -a -E -W -d releasenotes/build/doctrees \ |
| 336 | -b html releasenotes/source releasenotes/build/html |
| 337 | whitelist_externals = rm |
Jordan Pittier | cefaa2b | 2016-07-22 13:04:26 +0200 | [diff] [blame] | 338 | |
Masayuki Igawa | de1153b | 2019-07-30 18:02:07 +0900 | [diff] [blame] | 339 | [testenv:bashate] |
Masayuki Igawa | de1153b | 2019-07-30 18:02:07 +0900 | [diff] [blame] | 340 | # if you want to test out some changes you have made to bashate |
| 341 | # against tempest, just set BASHATE_INSTALL_PATH=/path/... to your |
| 342 | # modified bashate tree |
| 343 | deps = |
| 344 | {env:BASHATE_INSTALL_PATH:bashate} |
| 345 | whitelist_externals = bash |
| 346 | commands = bash -c "find {toxinidir}/tools \ |
| 347 | -not \( -type d -name .?\* -prune \) \ |
| 348 | -type f \ |
| 349 | -name \*.sh \ |
Masayuki Igawa | fdd9644 | 2019-08-02 13:44:49 +0900 | [diff] [blame] | 350 | -print0 | xargs -0 bashate -v -eE005,E042 -i E006" |
Masayuki Igawa | de1153b | 2019-07-30 18:02:07 +0900 | [diff] [blame] | 351 | |
Jordan Pittier | cefaa2b | 2016-07-22 13:04:26 +0200 | [diff] [blame] | 352 | [testenv:pip-check-reqs] |
| 353 | # Do not install test-requirements as that will pollute the virtualenv for |
| 354 | # determining missing packages. |
| 355 | # This also means that pip-check-reqs must be installed separately, outside |
| 356 | # of the requirements.txt files |
| 357 | deps = pip_check_reqs |
| 358 | -r{toxinidir}/requirements.txt |
| 359 | commands= |
| 360 | pip-extra-reqs -d --ignore-file=tempest/tests/* tempest |
| 361 | pip-missing-reqs -d --ignore-file=tempest/tests/* tempest |
Chandan Kumar | ac5c553 | 2016-11-30 18:49:26 +0530 | [diff] [blame] | 362 | |
| 363 | |
| 364 | [testenv:bindep] |
| 365 | # Do not install any requirements. We want this to be fast and work even if |
| 366 | # system dependencies are missing, since it's used to tell you what system |
| 367 | # dependencies are missing! This also means that bindep must be installed |
| 368 | # separately, outside of the requirements files. |
| 369 | deps = bindep |
| 370 | commands = bindep test |
Chandan Kumar | b7affe4 | 2017-06-29 13:57:01 +0530 | [diff] [blame] | 371 | |
| 372 | [testenv:plugin-sanity-check] |
| 373 | # perform tempest plugin sanity |
| 374 | whitelist_externals = bash |
| 375 | commands = |
| 376 | bash tools/tempest-plugin-sanity.sh |