mirror of
https://github.com/rancher/os.git
synced 2025-07-07 11:58:38 +00:00
9 lines
175 B
Python
9 lines
175 B
Python
|
import os
|
||
|
import pytest
|
||
|
|
||
|
|
||
|
@pytest.fixture(scope="session", autouse=True)
|
||
|
def my_own_session_run_at_beginning():
|
||
|
os.chdir('../..')
|
||
|
print('\nChdir to project root dir')
|