mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Pytest imports all modules when running doctests. The setup.py runs code on import, and raises an exception, depending on globa connand-line arguments, so it needs to be ignored. Also, pytest dislikes multiple top-level modules with the same name ("setup" in this case). Again ignoring is the way to go.
27 lines
1.0 KiB
INI
27 lines
1.0 KiB
INI
# pytest configuration
|
|
|
|
# This file lives in ipatests/pytest.ini, so it can be included by setup.py,
|
|
# and it's symlinked from the project's root directory, so py.test finds it
|
|
# when called with no arguments.
|
|
|
|
[pytest]
|
|
python_classes = test_ Test
|
|
addopts = --doctest-modules
|
|
--junit-prefix ipa
|
|
-p ipatests.pytest_plugins.nose_compat
|
|
-p ipatests.pytest_plugins.declarative
|
|
-p ipatests.pytest_plugins.ordering
|
|
-p ipatests.pytest_plugins.integration
|
|
-p ipatests.pytest_plugins.beakerlib
|
|
# Ignore files for doc tests.
|
|
# TODO: ideally, these should all use __name__=='__main__' guards
|
|
--ignore=setup.py
|
|
--ignore=setup-client.py
|
|
--ignore=checks/check-ra.py
|
|
--ignore=daemons/ipa-otpd/test.py
|
|
--ignore=doc/examples/python-api.py
|
|
--ignore=install/share/copy-schema-to-ca.py
|
|
--ignore=install/share/wsgi.py
|
|
--ignore=ipapython/py_default_encoding/setup.py
|
|
--ignore=ipapython/ipap11helper/setup.py
|