File size: 448 Bytes
d439dc1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | # Because tests can be run from an installed copy, most of our Pytest
# configuration is in the `pytest_configure` function in
# `lib/matplotlib/testing/conftest.py`. This configuration file exists only to
# set a minimum pytest version and to prevent pytest from wasting time trying
# to check examples and documentation files that are not really tests.
[pytest]
minversion = 7.0.0
testpaths = lib
python_files = test_*.py
junit_family = xunit2
|