aboutsummaryrefslogtreecommitdiff
path: root/tests/conftest.py
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2021-03-06 16:01:24 +0100
committerCharles Cabergs <me@cacharle.xyz>2021-03-06 16:01:24 +0100
commitfc7a0425a1e19807ec2819bdb73dc6aa14d0e197 (patch)
tree142225b152d462dcf903cb45523565671a65a0b4 /tests/conftest.py
parent2a854b36624fb1c108a56d317aa54ca630864288 (diff)
downloadminishell_test-fc7a0425a1e19807ec2819bdb73dc6aa14d0e197.tar.gz
minishell_test-fc7a0425a1e19807ec2819bdb73dc6aa14d0e197.tar.bz2
minishell_test-fc7a0425a1e19807ec2819bdb73dc6aa14d0e197.zip
Added test for half of Suitedev
Diffstat (limited to 'tests/conftest.py')
-rw-r--r--tests/conftest.py11
1 files changed, 10 insertions, 1 deletions
diff --git a/tests/conftest.py b/tests/conftest.py
index 5e64fd1..137a024 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -1 +1,10 @@
-# do not remove, used by pytest
+import pytest
+
+from minishell_test.config import Config
+from minishell_test import colors
+
+
+@pytest.fixture(autouse=True)
+def config_init():
+ colors.disable()
+ Config.init([])