mirror of
https://github.com/rancher/os.git
synced 2025-07-07 11:58:38 +00:00
11 lines
307 B
Python
11 lines
307 B
Python
import os
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture(scope="session", autouse=True)
|
|
def chdir_to_project_root():
|
|
os.chdir('../..')
|
|
print('\nChdir to project root dir')
|
|
os.chmod('./tests/integration/assets/test.key', 0o600)
|
|
print('Also, `chmod 600 tests/integration/assets/test.key` to make ssh happy')
|