summaryrefslogtreecommitdiff
path: root/setup.py
Commit message (Collapse)AuthorAgeFilesLines
* [ussuri][goal] Drop python 2.7 support and testingGhanshyam Mann2020-02-121-8/+0
| | | | | | | | | | | | | | | | | | | | | OpenStack is dropping the py2.7 support in ussuri cycle. Tempest is ready with python 3 and ok to drop the python 2.7 support. Last Tempest version officially supported for py2.7 is 23.0.0. Now onwards, Tempest will test all stable branch with py3 jobs. tempest-full and other py2 version of jobs definition are kept for stable branch gate. Complete discussion & schedule can be found in - http://lists.openstack.org/pipermail/openstack-discuss/2019-October/010142.html - https://etherpad.openstack.org/p/drop-python2-support Ussuri Communtiy-wide goal: https://governance.openstack.org/tc/goals/selected/ussuri/drop-py27.html Change-Id: I75868d5c9b6630fe78958ff89e58a0aced09a6b3
* Updated from global requirementsOpenStack Proposal Bot2017-03-081-1/+1
| | | | Change-Id: If1dd2f2dc3b0fd44aff3587b958f2db2b0a04cf8
* Updated from global requirementsOpenStack Proposal Bot2015-09-231-1/+1
| | | | Change-Id: I99279eb0b4d11bf577d55e215990c21946718b5e
* Updated from global requirementsOpenStack Proposal Bot2015-07-151-1/+1
| | | | Change-Id: I48b3e178bf6741231cb5fafd8579265a2c0d2739
* Updated from global requirementsOpenStack Proposal Bot2015-06-221-1/+0
| | | | Change-Id: I97e52fd9652df96de03d6d126026144731b87c70
* Updated from global requirementsOpenStack Proposal Bot2014-05-021-0/+8
| | | | Change-Id: I3a7b913a3ab20750f6e8b048d961d66ad81dfb9a
* Update to latest pbrMatthew Treinish2013-10-241-2/+3
| | | | | | | | | This commit moves switches tempest from the d2to1 version of pbr and move to the latest version of pbr. However, there is a bug with build_spinx so it doesn't work with a doc version set so that section is removed from the doc conf.py. Change-Id: I4fe14eb2b2e81132f8fa99936a031176b38c437b
* Migrate to pbr from openstack.common.setup.Monty Taylor2013-05-011-44/+14
| | | | Change-Id: Ia85bda060a6c62c721b9104b2bd52d3fe1673367
* Set version to 2013.2Matthew Treinish2013-04-011-1/+1
| | | | | | Open Havana development by setting the version to 2013.2 Change-Id: Ic5255f2637098de1f535f2d2c1e8922d77bf7f65
* Initial Oslo sync for Tempest.Matthew Treinish2013-01-031-4/+4
| | | | | | | | | | | This patch syncs cfg, iniparser, and setup from oslo. Additionally, to avoid a name conflict tempest.openstack was renamed tempest.clients. Also, the duplicate copy of setup.py in tempest.common was removed and all references to it were updated. Change-Id: I6ed3a97e35ce73b820f7a436214480051ed6528f
* Start making setup.py similar to other OpenStack ProjectsAttila Fazekas2012-12-051-28/+45
| | | | | | | | | * Try /etc/tempest DIR if the config file not found * Exit immediately if the config file not found * Remove pika from dependencies * tempest named starter script (pep8 removed run_tests.sh) Change-Id: I1f0b1fb061a265c5f8e39627efd26decdc61ef63
* Fix checks in server listing only lok for an IDJay Pipes2012-07-241-0/+34
The list server filter details checks were checking entire mappings against the list of mappings returned from a call to GET /servers/detail. Unfortunately, the mappings returned by the GET /servers/detail and the mapping returned by POST /servers are slightly different, resulting in the comparison failing. We really only are checking that the server instance we expect to be in the returned list of instances is there, so checking for the server ID in the returned list is fine. Change-Id: If9680f56a1ea06ffe93393d06b23bd231ccddd01 Fixes: LP Bug 1028465pep8 build for tempest.