1
0
mirror of https://github.com/rancher/os.git synced 2025-07-07 20:08:37 +00:00
os/tests/integration/rancherostest/conftest.py

9 lines
165 B
Python
Raw Normal View History

import os
import pytest
@pytest.fixture(scope="session", autouse=True)
2015-05-08 05:42:18 +00:00
def chdir_to_project_root():
os.chdir('../..')
print('\nChdir to project root dir')