diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2021-03-06 16:01:24 +0100 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2021-03-06 16:01:24 +0100 |
| commit | fc7a0425a1e19807ec2819bdb73dc6aa14d0e197 (patch) | |
| tree | 142225b152d462dcf903cb45523565671a65a0b4 /tests/conftest.py | |
| parent | 2a854b36624fb1c108a56d317aa54ca630864288 (diff) | |
| download | minishell_test-dev.tar.gz minishell_test-dev.tar.bz2 minishell_test-dev.zip | |
Added test for half of Suitedev
Diffstat (limited to 'tests/conftest.py')
| -rw-r--r-- | tests/conftest.py | 11 |
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([]) |
