Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d72f069 commit 876beccCopy full SHA for 876becc
lib/matplotlib/tests/__init__.py
@@ -1,9 +1,8 @@
1
-import os
+from pathlib import Path
2
3
4
-# Check that the test directories exist
5
-if not os.path.exists(os.path.join(
6
- os.path.dirname(__file__), 'baseline_images')):
+# Check that the test directories exist.
+if not (Path(__file__).parent / 'baseline_images').exists():
7
raise IOError(
8
'The baseline image directory does not exist. '
9
'This is most likely because the test data is not installed. '
pytest.ini
@@ -1,4 +1,6 @@
[pytest]
+minversion = 3.6
+
testpaths = lib
python_files = test_*.py
0 commit comments