1
0
mirror of https://github.com/240596448/onec_codetemplate_parser.git synced 2025-11-29 05:36:45 +02:00

проверка на каждый файл

This commit is contained in:
Vladimir Nadulich
2025-11-02 23:35:44 +03:00
parent 1c0003a015
commit 91dc563a14
3 changed files with 16 additions and 9 deletions

View File

@@ -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"