Tree:
14a7304a62
master
stable/rocky
stable/stein
stable/train
stable/ussuri
stable/victoria
stable/wallaby
stable/xena
stable/yoga
10.0.0
10.0.0.0b1
10.0.0.0b2
10.0.0.0b3
10.0.0.0rc1
10.0.0.0rc2
10.0.1
10.0.2
10.0.3
11.0.0
11.0.0.0b1
11.0.0.0b2
11.0.0.0b3
11.0.0.0rc1
11.0.0.0rc2
11.0.1
11.0.2
11.0.3
12.0.0
12.0.0.0rc1
12.0.0.0rc2
12.1.0
12.2.0
13.0.0
13.0.0.0rc1
13.0.0.0rc2
13.0.1
13.0.2
13.1.0
14.0.0
14.0.0.0rc1
14.1.0
14.2.0
15.0.0
15.0.0.0rc1
15.1.0
16.0.0
16.0.0.0rc1
17.0.0
17.0.0.0rc1
17.0.0.0rc2
17.0.1
18.0.0
18.0.0.0rc1
2013.1
2013.1.2
2013.1.3
2013.1.4
2013.1.g3
2013.1.rc1
2013.1.rc2
2013.2
2013.2.1
2013.2.2
2013.2.3
2013.2.4
2013.2.b1
2013.2.b2
2013.2.b3
2013.2.rc1
2013.2.rc2
2014.1
2014.1.1
2014.1.2
2014.1.3
2014.1.4
2014.1.5
2014.1.b1
2014.1.b2
2014.1.b3
2014.1.rc1
2014.1.rc2
2014.2
2014.2.1
2014.2.2
2014.2.3
2014.2.4
2014.2.b1
2014.2.b2
2014.2.b3
2014.2.rc1
2014.2.rc2
2014.2.rc3
2015.1.0
2015.1.0b1
2015.1.0b2
2015.1.0b3
2015.1.0rc1
2015.1.0rc2
2015.1.1
2015.1.2
2015.1.3
2015.1.4
5.0.0
5.0.0.0b1
5.0.0.0b2
5.0.0.0b3
5.0.0.0rc1
5.0.0.0rc2
5.0.0a0
5.0.1
5.0.2
5.0.3
6.0.0
6.0.0.0b1
6.0.0.0b2
6.0.0.0b3
6.0.0.0rc1
6.0.0.0rc2
6.0.0.0rc3
6.1.0
6.1.1
6.1.2
7.0.0
7.0.0.0b1
7.0.0.0b2
7.0.0.0b3
7.0.0.0rc1
7.0.0.0rc2
7.0.1
7.0.2
7.0.3
7.0.4
7.0.5
7.0.6
8.0.0
8.0.0.0b1
8.0.0.0b2
8.0.0.0b3
8.0.0.0rc1
8.0.0.0rc2
8.0.1
8.0.2
8.0.3
8.0.4
8.0.5
8.0.6
8.0.7
9.0.0
9.0.0.0b1
9.0.0.0b2
9.0.0.0b3
9.0.0.0rc1
9.0.0.0rc2
9.0.1
9.0.2
9.0.3
9.0.4
9.0.5
9.0.6
9.0.7
grizzly-2
grizzly-eol
havana-eol
icehouse-eol
juno-eol
kilo-eol
liberty-eol
mitaka-eol
newton-eol
ocata-em
ocata-eol
pike-em
pike-eol
queens-em
queens-eol
rocky-em
stein-em
train-em
ussuri-em
v1-POC.release
v2-M1.release
v3.release
v4-branch-eol
v4.release
v5-branch-eol
v5.release
v6-branch-eol
v6.release
v7-branch-eol
v7.release
victoria-em
${ noResults }
5 Commits (14a7304a62e50e9f2918b00c8fa20426c22d67c5)
Author | SHA1 | Message | Date |
---|---|---|---|
|
f518cfe252 |
Add separate requirements.txt to integration tests
and use it during tox run. This should speed up the tox venv creation somewhat, as the new requirements is shorter, thus less packages are installed or C extensions compiled. Also this is the first step to ease packaging of the integration tests as a separate tool. Change-Id: I914eb675e7f025e03a22719d5dff8ed741fbd37d |
7 years ago |
|
805a73b1e7 |
Restructure contrib/ directories
contrib/ directory does not follow any standards and will make it harder to programmatically install plugins on devstack. The current structure can also cause namespace collisions when loading them. This moves all plugin modules to a folder with the same name under their directory (e.g. contrib/rackspace/rackspace), allowing requirements, readmes, and other files to be separate from the actual code. This also helps to avoid namespace collisions when loading all the plugins, since all plugins will be under their namespace in the heat package. Example: heat.engine.plugins heat.engine.plugins.docker heat.engine.plugins.marconi heat.engine.plugins.rackspace Since plugin packages are now in a folder one level under contrib/, testr.conf is also updated so that all plugins are discovered correctly. Co-Authored-By: Anderson Mesquita <andersonvom@gmail.com> Related-Bug: #1271226 Change-Id: Ifc8e3ca388253be82471651737da5d399c7cfb98 |
8 years ago |
|
58581ce92c |
Enabled source code coverage for contrib directory
So we can check the source code coverage status of contrib directory. It's obvious to adjust omit and source properties in .coveragerc. The tricky code in .testr.conf is caused by the behavior of setuptools. When running coverage, setuptools set environment variable PYTHON to 'coverage run --source package --parallel-mode' and call testr to run the tests. The value specified via command line option --source will overwrite the source value in .coveragerc. So contrib directory is excluded from coverage run. The change in .testr.conf removed the '--source heat' specified by setuptools. So the source value specified in .coveragerc will be used by coverage. Change-Id: I92f6b058067ace3b3370a3670856ab3dc073b52f |
9 years ago |
|
20b854b836 |
Refactor heat gate testing contrib support
The existing code is running tests twice, one for heat, one for contrib via adding two commands in tox. This breaked tox single run. For example: tox -e py27 -- heat.tests.test_software_config Except heat.tests.test_software_config is executed, all test cases in contrib will be executed also. The patch added contrib in discover list, which can make sure both contrib in heat gate testing and does not break single test run. Change-Id: I014d7b95c64287e1fd04a0ba69fce0de554a9a08 |
9 years ago |
|
8b8525260d |
Enable running tests via testr
This also disables the functional tests from running. The code is still left here for posterity. These are intended to be moved into tempest test cases and thus will be removed entirely at that time. Change-Id: I294671baead6e83a8312b41681e99d395f861209 |
9 years ago |