12 lines
218 B
Python
Raw Permalink Normal View History

2024-05-21 22:15:48 +02:00
"""test configs"""
import os
import pytest
@pytest.fixture(scope="session", autouse=True)
def change_test_dir(request):
"""change directory to project folder"""
2024-08-03 23:37:23 +02:00
os.chdir(request.config.rootdir / "backend")