We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad07cb5 commit ddea973Copy full SHA for ddea973
tests/conftest.py
@@ -0,0 +1,8 @@
1
+import pytest
2
+
3
4
+@pytest.fixture(autouse=True)
5
+def reset_color_envvars(monkeypatch):
6
+ """Remove color-related envvars to fix test output"""
7
+ monkeypatch.delenv("FORCE_COLOR", raising=False)
8
+ monkeypatch.delenv("NO_COLOR", raising=False)
0 commit comments