mirror of https://github.com/ansible/ansible.git
Avoid sphinx usage in changelog sanity test.
parent
418b9b781d
commit
b1344a1847
@ -0,0 +1,2 @@
|
|||||||
|
bugfixes:
|
||||||
|
- ansible-test - The ``changelog`` sanity test has been updated to ensure ``rstcheck`` does not load the ``sphinx`` module.
|
@ -0,0 +1,5 @@
|
|||||||
|
"""Block the sphinx module from being loaded."""
|
||||||
|
from __future__ import (absolute_import, division, print_function)
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
|
raise ImportError('The sphinx module has been prevented from loading to maintain consistent test results.')
|
Loading…
Reference in New Issue