From 6ad33d2d0abe1cec2c19d1e1d14a8b81c3a14c43 Mon Sep 17 00:00:00 2001 From: Michał Górny Date: Mon, 31 Aug 2020 19:05:34 +0200 Subject: tests: Mark module-scope test dirs read-only MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- tests/test_find_top_level.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tests/test_find_top_level.py') diff --git a/tests/test_find_top_level.py b/tests/test_find_top_level.py index 184fe72..c4df873 100644 --- a/tests/test_find_top_level.py +++ b/tests/test_find_top_level.py @@ -11,6 +11,8 @@ import pytest from gemato.find_top_level import find_top_level_manifest +from tests.testutil import disallow_writes + @pytest.fixture(scope='module') def plain_tree(tmp_path_factory): @@ -33,6 +35,7 @@ IGNORE ignored-empty-dir 'ignored-dir/Manifest'): with open(tmp_path / f, 'w'): pass + disallow_writes(tmp_path) yield tmp_path @@ -107,6 +110,7 @@ IGNORE ignored-empty-dir 'ignored-dir/Manifest.gz'): with gzip.GzipFile(tmp_path / f, 'w'): pass + disallow_writes(tmp_path) yield tmp_path -- cgit v1.2.3