The Gaudi Framework  master (37c0b60a)
__init__.py
Go to the documentation of this file.
1 
11 import pytest
12 
13 # make sure asserts in GaudiExeTest and SubprocessBaseTest are enhanced by pytest
14 # (see https://docs.pytest.org/en/stable/how-to/writing_plugins.html#assertion-rewriting)
15 pytest.register_assert_rewrite("GaudiTesting.GaudiExeTest")
16 pytest.register_assert_rewrite("GaudiTesting.SubprocessBaseTest")
17 
18 # allow from GaudiTesting import SKIP_RETURN_CODE
19 from .BaseTest import SKIP_RETURN_CODE # noqa: F401
20 
21 # allow from GaudiTesting import GaudiExeTest
22 from .GaudiExeTest import NO_ERROR_MESSAGES, GaudiExeTest # noqa: F401
23 
24 # allow from GaudiTesting import platformMatches
25 from .utils import platform_matches # noqa: F401