From 506ec2b8258cfe03d0d7e3b19eb79d1075a6174c Mon Sep 17 00:00:00 2001 From: Max Romanov Date: Tue, 9 Nov 2021 15:48:44 +0300 Subject: Tests: app prototype related fixes. --- test/test_go_application.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'test/test_go_application.py') diff --git a/test/test_go_application.py b/test/test_go_application.py index 438ce2e0..94da1aee 100644 --- a/test/test_go_application.py +++ b/test/test_go_application.py @@ -1,11 +1,17 @@ import re +import pytest + from unit.applications.lang.go import TestApplicationGo class TestGoApplication(TestApplicationGo): prerequisites = {'modules': {'go': 'all'}} + @pytest.fixture(autouse=True) + def setup_method_fixture(self, request, skip_alert): + skip_alert(r'\[unit\] close\(\d+\) failed: Bad file descriptor') + def test_go_application_variables(self): self.load('variables') -- cgit