mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-27 09:21:59 -06:00
3a9a98b285
Ordered integration tests may now be run with pytest. https://fedorahosted.org/freeipa/ticket/4610 Reviewed-By: Tomas Babej <tbabej@redhat.com>
22 lines
835 B
INI
22 lines
835 B
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
|
|
-p ipatests.pytest_plugins.declarative
|
|
-p ipatests.pytest_plugins.ordering
|
|
# 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
|