+

Search Tips   |   Advanced Search

integration-aliases

Integration tests are executed by ansible-test and reside in directories under test/integration/targets/. Each test MUST have an aliases file to control test execution.

Aliases are explained in the following sections. Each alias must be on a separate line in an aliases file.


Groups

Tests must be configured to run in exactly one group. This is done by adding the appropriate group to the aliases file.

The following are examples of some of the available groups:

Groups are used to balance tests across multiple CI jobs to minimize test run time. They also improve efficiency by keeping tests with similar requirements running together.

When selecting a group for a new test, use the same group as existing tests similar to the one being added. If more than one group is available, select one randomly.


Setup

Aliases can be used to execute setup targets before running tests:


Requirements

Aliases can be used to express some test requirements:


Dependencies

Some test dependencies are automatically discovered:

Aliases can be used to declare dependencies that are not handled automatically:


Skipping

Aliases can be used to skip platforms using one of the following:

Platform versions, as specified using the --remote option with / removed, can also be skipped:

Windows versions, as specified using the --windows option can also be skipped:

Aliases can be used to skip Python major versions using one of the following:

For more fine grained skipping, use conditionals in integration test playbooks, such as:


Miscellaneous

There are several other aliases available as well:


Unstable

Tests which fail sometimes should be marked with the unstable alias until the instability has been fixed. These tests will continue to run for pull requests which modify the test or the module under test.

This avoids unnecessary test failures for other pull requests, as well as tests on merge runs and nightly CI jobs.

There are two ways to run unstable tests manually:

Tests will be marked as unstable by a member of the Ansible Core Team. GitHub issues will be created to track each unstable test.


Disabled

Tests which always fail should be marked with the disabled alias until they can be fixed.

Disabled tests are automatically skipped.

There are two ways to run disabled tests manually:

Tests will be marked as disabled by a member of the Ansible Core Team. GitHub issues will be created to track each disabled test.


Unsupported

Tests which cannot be run in CI should be marked with the unsupported alias. Most tests can be supported through the use of simulators and/or cloud plugins.

However, if that is not possible then marking a test as unsupported will prevent it from running in CI.

There are two ways to run unsupported tests manually:

Tests will be marked as unsupported by the contributor of the test.


Cloud

Tests for cloud services and other modules that require access to external APIs usually require special support for testing in CI.

These require an additional alias to indicate the required test plugin.

Some of the available aliases are:


Untested

Every module and plugin should have integration tests, even if the tests cannot be run in CI.


Issues

Tests that are marked as unstable or disabled will have an issue created to track the status of the test. Each issue will be assigned to one of the following projects:


Questions

For questions about integration tests reach out to @mattclay or @gundalow on GitHub or #ansible-devel on IRC.

Next Previous