File tree Expand file tree Collapse file tree 2 files changed +7
-9
lines changed
Expand file tree Collapse file tree 2 files changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -221,15 +221,6 @@ jobs:
221221 run : |
222222 python -m pip install -i https://pypi.anaconda.org/scipy-wheels-nightly/simple --upgrade numpy pandas
223223
224- # Turn all warnings to errors, except ignore the distutils deprecations and the find_spec warning
225- cat >> pytest.ini << EOF
226- [pytest]
227- filterwarnings =
228- error
229- ignore:.*distutils:DeprecationWarning
230- ignore:DynamicImporter.find_spec\(\) not found; falling back to find_module\(\):ImportWarning
231- EOF
232-
233224 - name : Install Matplotlib
234225 run : |
235226 ccache -s
Original file line number Diff line number Diff line change 1+ [pytest]
2+ # NOTE: Because tests can be run from an installed copy, most of our Pytest
3+ # configuration is in the `pytest_configure` function in
4+ # `lib/matplotlib/testing/conftest.py`. This configuration file exists only to
5+ # prevent Pytest from wasting time trying to check examples and documentation
6+ # files that are not really tests.
7+ testpaths = lib
You can’t perform that action at this time.
0 commit comments