userver: en/testsuite/pytest_plugin.py Source File
Loading...
Searching...
No Matches
pytest_plugin.py
1import testsuite
2
3# Common testsuite plugins
4pytest_plugins = [
5 'testsuite.plugins.asyncio',
6 'testsuite.daemons.pytest_plugin',
7 'testsuite.environment.pytest_plugin',
8 'testsuite.mockserver.pytest_plugin',
9 'testsuite.plugins.assertrepr_compare',
10 'testsuite.plugins.asyncexc',
11 'testsuite.plugins.colors',
12 'testsuite.plugins.common',
13 'testsuite.plugins.matching',
14 'testsuite.plugins.misc',
15 'testsuite.plugins.mocked_time',
16 'testsuite.plugins.network',
17 'testsuite.plugins.object_hook',
18 'testsuite.plugins.servicelogs',
19 'testsuite.plugins.servicetest',
20 'testsuite.plugins.tcp_mockserver',
21 'testsuite.plugins.testpoint',
22 'testsuite.plugins.tracing',
23 'testsuite.plugins.verify_file_paths',
24]
25
26
27def pytest_report_header(config):
28 return [f'yandex-taxi-testsuite: version {testsuite.__version__}']