The Gaudi Framework  master (42b00024)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
__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 GaudiExeTest
19 from .GaudiExeTest import NO_ERROR_MESSAGES, GaudiExeTest # noqa: F401
20 
21 # allow from GaudiTesting import platformMatches
22 from .utils import platform_matches # noqa: F401