Commit Graph

46 Commits

Author SHA1 Message Date
Dmitriy Rabotyagov fd205c38da Update tox.ini to work with 4.0
With tox release of 4.0, some parameters were deprecated and are ignored now
which causes tox failures. One of the most spread issues we have is using
`whitelist_externals` isntead of `allowlist_externals`


Change-Id: I55cade793fc74fd5555c0f520bc132916343330e
2022-12-27 17:53:27 +01:00
Andreas Jaeger b64f07b80d Cleanup py27 support
This repo is now testing only with Python 3, so let's make
a few cleanups:
- Remove setup.* files, those are not needed for this repo.
- Cleanup */source/conf.py to remove now obsolete content.
- Remove install_command from tox.ini, the default is fine,
  move constraints into deps
- Enable warnings for docs build

Change-Id: I07da37d6f15aefc7b2fa558a6ead7028d6c9c556
2020-04-27 19:57:02 +02:00
Ghanshyam Mann d2e98135f7 [ussuri][goal] Updates for python 2.7 drop
OpenStack is dropping the py2.7 support in ussuri cycle.

Only update required is in tox to define common baspython as py3 os that
all tox env including [testenv:functional] will use py3 instead of py2.

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: I657f13a54e794a5e58cee5ad03d74ab266a06ca7
2020-03-01 19:23:35 -06:00
jacky06 b5fc7b4820 tox: Keeping going with docs
1. Sphinx 1.8 introduced [1] the '--keep-going' argument which, as its name
suggests, keeps the build running when it encounters non-fatal errors.
This is exceptionally useful in avoiding a continuous edit-build loop
when undertaking large doc reworks where multiple errors may be
introduced.
2. Remove the unnecessary blank line for tox.ini

[1] https://github.com/sphinx-doc/sphinx/commit/e3483e9b045

Depends-On: Ie837d376bb1a1d93367369d25140dd8a9d5ac14e
Change-Id: If83813f29a349783b6003545fb2457f9eb9f3352
2019-12-20 16:27:45 +00:00
Dmitriy Rabotyagov 2332b70d4d PDF Documentation Build tox target
This patch adds a `pdf-docs` tox target that will build
PDF versions of our docs. As per the Train community goal:

  https://governance.openstack.org/tc/goals/selected/train/pdf-doc-generation.html

Add sphinxcontrib-svg2pdfconverter to doc/requirements.txt
to convert our SVGs.

Change-Id: I0b200d57d7c92c959dc90fc540653aed71a6778c
Story: 2006105
2019-10-16 11:26:05 +00:00
melissaml 44b58230fd Replace git.openstack.org URLs with opendev.org URLs
Change-Id: Id294850bce5c6485cd704c595812630b98a9c572
2019-07-10 21:54:16 +08:00
huang.zhiping 35aa8e534a fix tox python3 overrides
We want to default to running all tox environments under python 3, so
set the basepython value in each environment.

We do not want to specify a minor version number, because we do not
want to have to update the file every time we upgrade python.

We do not want to set the override once in testenv, because that
breaks the more specific versions used in default environments like
py35 and py36.

Change-Id: I7704b6d9620eb3bd4c98a57f82268422fcb1852a
Closes-Bug:  #1801657
2018-12-24 02:27:57 +00:00
Doug Hellmann 6c152aea1d fix tox python3 overrides
We want to default to running all tox environments under python 3, so
set the basepython value in each environment.

We do not want to specify a minor version number, because we do not
want to have to update the file every time we upgrade python.

We do not want to set the override once in testenv, because that
breaks the more specific versions used in default environments like
py35 and py36.

Change-Id: I22102abc36569501e256facb6ade9fdb28c3d47b
Signed-off-by: Doug Hellmann <doug@doughellmann.com>
2018-09-26 18:44:54 -04:00
Jesse Pretorius 3789cee86b Clean up role tests
Now that we're using the general templates, we can slim down
the role test definitions. We can also remove tests which are
not being watched, or which are fundamentally broken. With
this we can also remove unused scripts/plays.

We do the following:

1. We remove the 'upgrade' job, given that it's been broken
   all cycle due to the way the job executes and we need to
   regroup to figure out another way to do it.

Change-Id: I473b4162e141e05692e89f0420ea74c745dfc9e5
2018-09-09 11:54:19 +01:00
Zuul a58212e45a Merge "fix tox python3 overrides" 2018-08-23 03:40:32 +00:00
Jesse Pretorius 7075184469 Use the TESTING_BRANCH env var for constraints
The TESTING_BRANCH environment variable is provided by the
run_tests.sh script and is derived from the .gitreview file.

This ensures that once the master branch becomes a stable
branch, the constraints from the stable branch in the
integrated repository will automatically get used once the
.gitreview file is updated.

To ensure that the required environment variables are present
we export them appropriately in run_tests.sh and modify the
tox configuration to pass them into the tox test.

Change-Id: Iff747fcfc56de833fa2fd43f807543896ced9527
Needed-By: https://review.openstack.org/579371
2018-08-16 18:29:44 +01:00
Nguyen Hung Phuong 4d8c2572b6 fix tox python3 overrides
We want to default to running all tox environments under python 3, so
set the basepython value in each environment.

We do not want to specify a minor version number, because we do not
want to have to update the file every time we upgrade python.

We do not want to set the override once in testenv, because that
breaks the more specific versions used in default environments like
py35 and py36.

Change-Id: I95c87fb0f374feebb9137548359e5da87fc27dc2
2018-07-05 11:43:23 +07:00
Heba Naser d291b0aa17 Use tests repo for common role test requirements
Using tox for requirements management requires in-repo
requirements files for all our repositories. Rather than
do that, we make use of the tests repo to capture our
common requirements and use this to install them.

This reduces our review requirement rate and simplifies
maintenance for us for the tox config. It also makes it
usable with 'Depends-On', which is marvellous!

The tox requirements definitions for docs/releasenotes
builds are left in-place as those are standard entries
across the community. If that changes at some point, we
can re-assess those entries too.

Depends-On: https://review.openstack.org/579208
Change-Id: I062311624046af061100f7ae8cccf10984b27c68
2018-07-02 12:02:52 -04:00
Kevin Carter 372ccd1bbd
Update the version of erlang to support rabbitmq
The version of erlang we're using, while functional, is not recommended.
This change updates our version of erlang for rabbitmq to be the
recommended version by changing the pinned version of erlang.

The apt package pinning meta dependency has been removed and put into
the apt task file as an include role. To ensure a more uniform process
for setting the version of erlang used with rabbitmq the new variable
`rabbitmq_erlang_version_spec` has been added. This option has a default
of "null" and is set by distro specific variables when applicable.

Erlang version support matrix: https://www.rabbitmq.com/which-erlang.html

Change-Id: Iced12d4533eec068bd11d8bd235d81308ef40427
Signed-off-by: Kevin Carter <kevin.carter@rackspace.com>
2018-06-05 19:39:56 -05:00
Jesse Pretorius 4371937f9b Remove tests-repo-clone.sh
Now that run_tests.sh handles the tests repo clone, we can
remove the use of the older tests-repo-clone.sh script.

Change-Id: I04b2c0614b3a328b8d805f64f8ed517435bf0ddc
2018-03-28 10:17:30 +01:00
Jesse Pretorius 8261c6b629 tox.ini: Expose USER environment variable to execution environment
In order to allow the use of the environment variable which informs
Ansible which user executed the playbook, we pass the USER env var
into the environment that tox builds.

Change-Id: I426e3356583a8f9d394e3e7721c8a502a7fe4adb
Implements: blueprint python-build-install-simplification
Signed-off-by: Jesse Pretorius <jesse.pretorius@rackspace.co.uk>
2018-03-15 18:03:28 +00:00
ZhongShengping 8a42dc744e Follow the new PTI for document build
For compliance with the Project Testing Interface as described in:
https://governance.openstack.org/tc/reference/project-testing-interface.html

For more detials information, please refer to:
http://lists.openstack.org/pipermail/openstack-dev/2017-December/125710.html

Change-Id: Ide1ffe82a4b49c700a91e271163f73816e08542f
2018-03-09 12:01:28 +08:00
Jesse Pretorius 1d399625d6 Implement separate deploy and upgrade tests
The current functional test does a full upgrade process,
but uses the same current role for both the previous
version and the new version.

Ideally we want to test the initial deploy using the
previous series' role, so that we're actually testing
a series upgrade, not just a rabbitmq upgrade.

This patch separates the upgrade test out and makes the
default test just be a deployment. This allows us to
more clearly see where something breaks.

Depends-On: https://review.openstack.org/543245
Change-Id: I43e1e224cd4237ac37b40fde5ce7c279331a012d
2018-02-11 18:36:28 +00:00
Jesse Pretorius 7f79ea2c69 Ensure that role tests pin pip/setuptools/wheel
Currently the role tests use whatever versions of pip,
setuptools and wheel are already installed on the host.

When a version of these tools changes it often causes
problems for our testing.

This will ensure that we use a known good set of pins
which is maintained in the general SHA bumping process.

Change-Id: I8a14c63d82956406f63b6ae810f3dd4eb2fb1cd2
2017-06-04 11:23:56 +01:00
Jesse Pretorius 8f54d6b9a5 Use zuul-cloner for tests repo in OpenStack-CI
When executing the tests repo clone in OpenStack-CI,
use zuul-cloner instead of git to enable cross-repo
testing. This ensures that if a dependent patch from
the tests repo is noted using 'Depends-On: <change-id>'
in the commit message, that patch will be included.

Depends-On: Idce7abebf32f24c356a27e099fbca954d917402b
Depends-On: I5da7802d61d2ab6b03908138e3a3ed2db22e3d29
Change-Id: I469bef1a5aad2b1c31972ec8f8ac3d7c0cdf4cc7
2017-05-16 13:38:33 +00:00
ji-xuepeng bb6ab783c2 Use https instead of http for git.openstack.org
Trivialfix

Change-Id: I96d954332991745dcbaf6d5f0ec4ef50c41aba72
2017-02-06 21:57:18 +08:00
gecong1973 d032d1a361 Delete deprecated Hacking in tox.ini
Some hacking have been removed,so we can delete them.
More details:
     https://github.com/openstack-dev/hacking/blob/master/setup.cfg

Change-Id: Id822074fbde57c6a02ee5eb9e5acc288b95a947b
2016-12-02 14:05:20 +08:00
Jesse Pretorius ccfb2de56f Use upper constraints for all tox targets
With the implementation of https://review.openstack.org/388087 all
tox targets may now use upper constraints.

Change-Id: Idee4dc3e35fb0f67a3f12e641999753baee0182f
2016-10-19 07:45:44 +01:00
Jesse Pretorius cf21b76f4d Use centralised Ansible test scripts
This patch consumes the centralised Ansible test scripts
implemented in https://review.openstack.org/381853

Change-Id: Icbfcc4e2f6584803458c0eb7eb1239c459b83492
2016-10-05 12:18:28 +01:00
Jesse Pretorius 99f1551a47 Remove install_test_packages variable
With https://review.openstack.org/381479 merged, setting this
variable in tox.ini via an extra var is unnecessary.

Change-Id: I1aa87d5ddfaefb1365c6eb42dca413ada2b71a35
2016-10-04 11:44:18 +01:00
Jesse Pretorius 3b75be345e Use centralised test scripts
This patch consumes the test scripts implemented by
https://review.openstack.org/375061 to ensure that
the tests and test preparation is consistent and
more maintainable.

Change-Id: Iea6a5793509df959e877a8974e3322a0b92ba360
2016-09-28 11:53:46 +01:00
Jenkins 6e693f2b68 Merge "delete python bytecode including pyo before every test run" 2016-09-21 06:27:52 +00:00
Travis Truman 2d251cf29d
Ansible 2.1.1 role testing
This commit also moves the upgrade test to its own
scenario using tox environment func_upgrade

Closes-Bug: #1623592
Change-Id: Ib79d9c261c3bf5e018806867ebe804b5853908e9
Signed-off-by: Kevin Carter <kevin.carter@rackspace.com>
2016-09-16 16:44:02 -05:00
avnish d2dc31b521 delete python bytecode including pyo before every test run
Change-Id: Id013e531bad0d7938e726b26e2e005f028435507
2016-09-16 09:41:27 +05:30
Jesse Pretorius e533c25ce0 Compress test execution logs
The volume of logs we collect in CI jobs are extensive. This
patch ensures that the logs collected are compressed to reduce
the space taken in CI systems.

PYTHONUNBUFFERED is also set to ensure that the console log
from the CI jobs is recorded in the exact order of execution.

Change-Id: I5eb6b16deaf3e0b01d46dae86ee40b1f8e90581d
Related-Bug: #1620849
2016-09-09 10:53:50 +01:00
Kevin Carter dbcd0986a3 Enable log collection after functional testing
This change enables log collection within the gate so that further analysis
on gate tasks can be performed post build. This is very useful when
debugging problems.

Change-Id: I64ba550208a690a784dbad8a3b871d0c1d703612
Signed-off-by: Kevin Carter <kevin.carter@rackspace.com>
2016-08-29 21:38:13 -05:00
Jesse Pretorius 46950a6328 Make all linting tests use upper-constraints
As per [1] all linting tests can now use upper-constraints. This patch
removes all instances of the install_command override relating to lint
testing which were needed to negate the use of upper-constraints.

[1] http://lists.openstack.org/pipermail/openstack-dev/2016-August/101474.html

Change-Id: I4cbd9a5baa0d4ae96c600af104146c47813ebc90
2016-08-20 16:07:33 +01:00
Jesse Pretorius e79d8b20cb Add python packages for SNI support in tests
This adds python packages required for SNI support to ensure that tox
installs the packages into the venv when running tests.

Change-Id: I5277e8f7b172a2ab847e368d8780e9992b5b6a88
2016-08-16 14:15:23 +00:00
Jean-Philippe Evrard 5d47675044 Include ansible commands for ansible linting
The plugin repo needs to be cloned for ansible-lint to
understand ansible plugins. The commands currently
reside in tox.ini under the ansible section and are not
currently included. This commit fixes that error.

Change-Id: Ic998e7f82a03a5008b6b15976c094b833a2a177e
2016-08-14 16:45:27 +00:00
Major Hayden 4c14f1edfc Fix get_url SNI issues in CentOS 7
CentOS 7 comes with Python 2.7.5, which does not have support for
servers that use Server Name Indication (SNI) to host more than
one SSL certificate on the same IP address. Three Python modules
are required on CentOS 7 systems to add this support:

* pyasn1
* pyOpenSSL
* ndg-httpsclient

This patch should prevent the SSL verification issues that occur
when the RabbitMQ RPMs are downloaded with get_url.

Closes-bug: 1604922

Change-Id: Ia14f25ed0ae399cfea6177adb6d34582a40c9249
2016-07-28 11:44:46 -05:00
Jesse Pretorius 7f3acaf38b Ensure that doc linting is included in the linters test
The 'docs' tox target executes the doc8 lint test which may result in
failures when testing documentation builds, but OpenStack-CI does not
execute that tox target.

In order to ensure that we catch all standard documentation syntax
errors and prevent them from merging, this patch includes the docs
target in the 'linters' chain of tests.

Fixes for any failures which result from executing this test are also
included in the patch.

Change-Id: I0f3d0585da4e9d946627bb78dc7314149e8dee9f
2016-07-26 00:47:19 +01:00
Jesse Pretorius 33479f11c5 Use plugins repo version of the human_log callback plugin
With the implementation of https://review.openstack.org/321331 the
human_log callback plugin is now part of the plugins repo.

This patch removes the retrofitted version in tox in favor of using
the version from the plugins repo instead.

Change-Id: I1aad3b4e4fecc9e2b030c50b09e83b2b57ab2eb3
2016-07-15 14:04:32 +01:00
Jesse Pretorius 423347cfef Implement doc8 checks for docs
In order to prepare for the move of detailed configuration
content from the install guide to the roles, doc8 checks
are being implemented in the roles to ensure that any new
content submitted is properly checked.

Change-Id: I6576b47799b74b7930dc1ebefefed51e3de23526
Partially-Implements: blueprint osa-install-guide-overhaul
2016-07-13 12:57:48 +01:00
Jesse Pretorius eb495e4d80 Update tox configuration
In order to prepare for implementing requirements management by the
OpenStack requirements management process, and to improve the
reliability and effectiveness of test execution, this patch implements
some changes to the tox configuration:

- The minimum tox version is increased in order to be able to use
  constraints for the python packages.
- The OpenStack upper-constraints are used when preparing the test
  venv for the linters checks.
- Any proxy environment variables set on the test host are passed
  into the venv to enable testing from behind a proxy.
- The environment variables used by Ansible tests are moved into
  a new venv called 'ansible' and this environment is inherited
  by all Ansible-related tests.
- The docs test will clean-up an existing build directory before
  executing the docs build.
- The releasenotes build cannot use upper-constraints at this point,
  so it doesn't.
- The Ansible role download will no longer ignore errors so that any
  problems discovered will result in a failed test.
- The human readable logging callback plugin is implemented for
  functional testing.
- The ansible test requirements are moved into tox.ini to ensure
  compliance for requirements.txt/test-requirements.txt for the
  global-requirements management contract.
- The ~/.ansible directory as a whole is not deleted. Instead only
  the plugins and roles folders are deleted to ensure that zuul's
  Ansible artifacts are left in-place.
- The ansible-lint version is updated to support execution against a
  folder, and the test now executes against the entire role to ensure
  that it captures all applicable files for lint testing.

This is a combined port of the following:
- https://review.openstack.org/323507
- https://review.openstack.org/338193
- https://review.openstack.org/332443
- https://review.openstack.org/338193
- https://review.openstack.org/339493

Change-Id: Ie08d1c8c82220e496bfa6d8b6743b5b3318c72ed
2016-07-08 13:37:23 +01:00
Jimmy McCrory 1b9035aa79 Reorganize test playbooks
The following changes have been made to reorganize the structure of this
role's test playbooks, bringing them into line with other
OpenStack-Ansible roles:
  - move each playbook to an individual file
  - rename playbooks descriptively
  - define hosts and groups directly in the inventory file
  - include group vars required by containers
  - store extra variables in a single shared test-vars file
  - reduce lxc network dhcp network range to avoid conflicts with static
    container addresses
  - include callback plugin for human readable logging of test tasks

Change-Id: I6aa877b10945a265d7484c9aacb3c232d82d8ebb
2016-05-03 06:18:45 -07:00
Jesse Pretorius 51639e8dc1 Add reno scaffolding for release notes management
Change-Id: I6683e5227bf1b9f438efc2612f84311acfbd7b51
2016-04-09 19:21:57 +01:00
Jesse Pretorius 801a780ff0 Update tox config and add bashate E006, E040 exceptions
This patch updates the tox.ini the same bashate exceptions as are
currently in the OpenStack-Ansible playbook repo.

It also ensures that the linters and all lint targets work
appropriately and normalises the tox.ini configuration to use
uniform formatting.

The use of ansible.cfg is removed as there is no way of being
certain which paths can be used without reverting to an ugly
sed hack in the commands. This is why it is preferred to make
use of environment variables which make use of tox's default
substitutions instead. It's a more reliable way of achieving
the goal for the purpose of gating and testing.

The switch to using a git clone instead of ansible-galaxy to
download the plugins is due to the path spec not being able to
work in Ansible 2.x. [1]

[1] https://github.com/ansible/ansible/issues/13563

Change-Id: I19d0a88574ca7bcb4d8709e14fbb5ffec5a8d021
2016-02-12 11:57:39 +00:00
Jesse Pretorius c26f9d1276 Revise all lint tests and add consolidated 'linters' tox environment
OpenStack-Infra has requested that lint tests be pipelined into the 'linters'
tox target in order to make more efficient use of nodepool resources.

This patch:

- Ensures that a complete set of lints tests is available in individual
  tox targets.
- Adds a 'linters' target which executes all the other lints tests.

Change-Id: I98feb85a9a3a530f291c50bc46ec9c639327162a
2016-02-03 13:22:50 +00:00
Paul Belanger 822c6c5694 Switch to testenv:functional
This brings our tox.ini files inline with other OpenStack projects.

Change-Id: I6dd5066b6e6649b1e0ffca22c913fdc776fbc042
Depends-On: I376e51824c46f9b5eb4a4cff01aaa176632087dd
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
2015-12-18 15:38:45 -05:00
Jesse Pretorius 41a71b150d Merge bashate/pep8 lint jobs in common job
Instead of launching two separate build jobs in our CI infrastructure,
one for bashate and one for pep8, launch a single one. While the jobs
are short, the setup of the images takes a long time, so this is
friendlier to our CI infrastructure.

Use the pep8 environment as common lint target and merge the bashate job
into it.

This patch also renamed dev-requirements to test-requirements to bring it
into line with all other OpenStack projects.

Change-Id: I19c4d9577ff86325fc87b9c03825f40defeeb273
2015-12-15 09:57:15 +00:00
Kevin Carter ee03bfc5ba
first commit
Signed-off-by: Kevin Carter <kevin.carter@rackspace.com>
2015-12-09 09:25:11 -06:00