You've already forked onec_codetemplate_parser
mirror of
https://github.com/240596448/onec_codetemplate_parser.git
synced 2025-11-29 05:36:45 +02:00
проверка на каждый файл
This commit is contained in:
@@ -34,14 +34,19 @@ def test_data(test_file_path):
|
||||
def temp_src_class(tmp_path_factory):
|
||||
"""
|
||||
Создаёт временную папку 'src' для класса тестов.
|
||||
Папка автоматически удаляется после теста.
|
||||
"""
|
||||
return tmp_path_factory.mktemp("src")
|
||||
|
||||
@pytest.fixture()
|
||||
def temp_src(tmp_path):
|
||||
"""
|
||||
Создаёт временную папку 'src' для теста.
|
||||
Папка автоматически удаляется после теста.
|
||||
Создаёт временную папку 'src' для каждого теста.
|
||||
"""
|
||||
return tmp_path / "src"
|
||||
|
||||
@pytest.fixture()
|
||||
def temp_output_st(tmp_path):
|
||||
"""
|
||||
Создаёт временный файл для вывода каждого теста.
|
||||
"""
|
||||
return tmp_path / "output.st"
|
||||
|
||||
Reference in New Issue
Block a user