diff options
author | Andrei Zeliankou <zelenkov@nginx.com> | 2023-06-12 17:28:42 +0100 |
---|---|---|
committer | Andrei Zeliankou <zelenkov@nginx.com> | 2023-06-12 17:28:42 +0100 |
commit | c6d05191a069ac150cc8eb2bece75cf79c0a465a (patch) | |
tree | 4f1794ba1e81a85eb4b2163dc736db511b4c6d38 /test | |
parent | a378f6aa3136ed7ef172b71add31ee62e560df00 (diff) | |
download | unit-c6d05191a069ac150cc8eb2bece75cf79c0a465a.tar.gz unit-c6d05191a069ac150cc8eb2bece75cf79c0a465a.tar.bz2 |
Tests: removed alert skip, unnecessary after 1a48ea61fec8.
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} |