mirror of https://github.com/ansible/ansible.git
* [stable-2.9] Fix ansible-test pytest plugin loading. (#62119) * Avoid assertion rewriting in pytest plugins. Adding PYTEST_DONT_REWRITE to the ansible-test pytest plugin docstrings disables assertion rewriting in pytest for those plugins. This avoids warnings during test execution if the plugins are loaded multiple times (such as being imported within tests). * Run ansible-test pytest plugins early. The ansible-test pytest plugins need to load and run earlier than conftest modules. To facilitate this, the pytest_configure function is run during loading, which works since they are loaded (but not always run) before conftest modules are loaded. A check has also been added to the pytest_configure functions to prevent them from running multiple times in the same process. * Load pytest plugins using an env var. The -p command line option loads plugins before conftest, but only during collection. The PYTEST_PLUGINS environment variable loads plugins before confest, both during collection and test execution. (cherry picked from commitpull/62162/headaaa6d2e
) Co-authored-by: Matt Clay <matt@mystile.com> * Add missing changelog entry for ansible-test fix. PR https://github.com/ansible/ansible/pull/62119 was missing a changelog entry. (cherry picked from commit6c78f02121
)
parent
e616ce1091
commit
77c2139f7e
@ -0,0 +1,2 @@
|
||||
bugfixes:
|
||||
- ansible-test now loads the collection loader plugin early enough for ansible_collections imports to work in unit test conftest.py modules
|
Loading…
Reference in New Issue