Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 597700
Collapse All | Expand All

(-)a/testing/acceptance_test.py (-2 / +4 lines)
Lines 30-36 Link Here
30
        result = testdir.runpytest(p1, "-n1")
30
        result = testdir.runpytest(p1, "-n1")
31
        assert result.ret == 1
31
        assert result.ret == 1
32
        result.stdout.fnmatch_lines([
32
        result.stdout.fnmatch_lines([
33
            "E   ImportError: *__import_of_missing_module*",
33
            "*ImportError*",
34
            "*__import_of_missing_module*",
34
        ])
35
        ])
35
36
36
    def test_n2_import_error(self, testdir):
37
    def test_n2_import_error(self, testdir):
Lines 64-70 Link Here
64
        result = testdir.runpytest(p1, '--tx=popen', '--tx=popen')
65
        result = testdir.runpytest(p1, '--tx=popen', '--tx=popen')
65
        assert result.ret == 1
66
        assert result.ret == 1
66
        result.stdout.fnmatch_lines([
67
        result.stdout.fnmatch_lines([
67
            "E   ImportError: *__import_of_missing_module*",
68
            "*ImportError*",
69
            "*__import_of_missing_module*",
68
        ])
70
        ])
69
71
70
    def test_manytests_to_one_popen(self, testdir):
72
    def test_manytests_to_one_popen(self, testdir):

Return to bug 597700