diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/test_go_application.py | 4 | ||||
-rw-r--r-- | test/test_go_isolation.py | 4 | ||||
-rw-r--r-- | test/test_go_isolation_rootfs.py | 4 |
3 files changed, 0 insertions, 12 deletions
diff --git a/test/test_go_application.py b/test/test_go_application.py index 36ddbc3a..cf66cb0b 100644 --- a/test/test_go_application.py +++ b/test/test_go_application.py @@ -7,10 +7,6 @@ prerequisites = {'modules': {'go': 'all'}} class TestGoApplication(TestApplicationGo): - @pytest.fixture(autouse=True) - def setup_method_fixture(self, skip_alert): - skip_alert(r'\[unit\] close\(\d+\) failed: Bad file descriptor') - def test_go_application_variables(self, date_to_sec_epoch, sec_epoch): self.load('variables') diff --git a/test/test_go_isolation.py b/test/test_go_isolation.py index ba997fd3..8d3a9025 100644 --- a/test/test_go_isolation.py +++ b/test/test_go_isolation.py @@ -11,10 +11,6 @@ prerequisites = {'modules': {'go': 'any'}, 'features': {'isolation': True}} class TestGoIsolation(TestApplicationGo): - @pytest.fixture(autouse=True) - def setup_method_fixture(self, skip_alert): - skip_alert(r'\[unit\] close\(\d+\) failed: Bad file descriptor') - def unpriv_creds(self): nobody_uid = pwd.getpwnam('nobody').pw_uid diff --git a/test/test_go_isolation_rootfs.py b/test/test_go_isolation_rootfs.py index aa07b80d..1f5e93a1 100644 --- a/test/test_go_isolation_rootfs.py +++ b/test/test_go_isolation_rootfs.py @@ -9,10 +9,6 @@ prerequisites = { class TestGoIsolationRootfs(TestApplicationGo): - @pytest.fixture(autouse=True) - def setup_method_fixture(self, skip_alert): - skip_alert(r'\[unit\] close\(\d+\) failed: Bad file descriptor') - def test_go_isolation_rootfs_chroot(self, temp_dir): isolation = {'rootfs': temp_dir} |