Change file paths for test resource

This commit is contained in:
Serene-Arc
2022-07-23 17:14:36 +10:00
parent 1f1e7dc63d
commit 607d963450
3 changed files with 8 additions and 8 deletions

View File

@@ -9,11 +9,11 @@ from click.testing import CliRunner
from bdfr.__main__ import cli
does_test_config_exist = Path('../test_config.cfg').exists()
does_test_config_exist = Path('./tests/test_config.cfg').exists()
def copy_test_config(run_path: Path):
shutil.copy(Path('../test_config.cfg'), Path(run_path, '../test_config.cfg'))
shutil.copy(Path('./tests/test_config.cfg'), Path(run_path, 'test_config.cfg'))
def create_basic_args_for_cloner_runner(test_args: list[str], tmp_path: Path):