We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d6c9e6 commit cae4277Copy full SHA for cae4277
1 file changed
tests/conftest.py
@@ -2,12 +2,16 @@
2
3
import hashlib
4
import json
5
+import logging
6
import os
7
from pathlib import Path
8
from types import GeneratorType
9
10
import pytest
11
12
+# Fix: I/O operation on closed (https://github.com/pallets/click/issues/824)
13
+logging.getLogger("matplotlib").setLevel(logging.ERROR)
14
+
15
test_type = os.environ.get("TEST_TYPE")
16
state_file = Path(f".pytest_cache/state_{test_type}.json")
17
0 commit comments