-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconftest.py
More file actions
75 lines (63 loc) · 3.21 KB
/
conftest.py
File metadata and controls
75 lines (63 loc) · 3.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# Copyright 2016-2025. Couchbase, Inc.
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from typing import List
import pytest
pytest_plugins = [
'tests.analytics_config',
'tests.environments.base_environment',
'tests.environments.simple_environment',
]
_UNIT_TESTS = [
'acouchbase_analytics/tests/connection_t.py::ConnectionTests',
'acouchbase_analytics/tests/json_parsing_t.py::JsonParsingTests',
'acouchbase_analytics/tests/options_t.py::ClusterOptionsTests',
'acouchbase_analytics/tests/query_options_t.py::ClusterQueryOptionsTests',
'acouchbase_analytics/tests/query_options_t.py::ScopeQueryOptionsTests',
'acouchbase_analytics/tests/test_server_t.py::ClusterTestServerTests',
'acouchbase_analytics/tests/test_server_t.py::ScopeTestServerTests',
'couchbase_analytics/tests/connection_t.py::ConnectionTests',
'couchbase_analytics/tests/duration_parsing_t.py::DurationParsingTests',
'couchbase_analytics/tests/json_parsing_t.py::JsonParsingTests',
'couchbase_analytics/tests/options_t.py::ClusterOptionsTests',
'couchbase_analytics/tests/query_options_t.py::ClusterQueryOptionsTests',
'couchbase_analytics/tests/query_options_t.py::ScopeQueryOptionsTests',
'couchbase_analytics/tests/test_server_t.py::ClusterTestServerTests',
'couchbase_analytics/tests/test_server_t.py::ScopeTestServerTests',
]
_INTEGRATRION_TESTS = [
'acouchbase_analytics/tests/connect_integration_t.py::ConnectTests',
'acouchbase_analytics/tests/query_integration_t.py::ClusterQueryTests',
'acouchbase_analytics/tests/query_integration_t.py::ScopeQueryTests',
'couchbase_analytics/tests/connect_integration_t.py::ConnectTests',
'couchbase_analytics/tests/query_integration_t.py::ClusterQueryTests',
'couchbase_analytics/tests/query_integration_t.py::ScopeQueryTests',
]
@pytest.fixture(scope='class')
def anyio_backend() -> str:
return 'asyncio'
# https://docs.pytest.org/en/stable/reference/reference.html#std-hook-pytest_collection_modifyitems
def pytest_collection_modifyitems(session: pytest.Session, config: pytest.Config, items: List[pytest.Item]) -> None: # noqa: C901
for item in items:
item_details = item.nodeid.split('::')
item_api = item_details[0].split('/')
if item_api[0] == 'couchbase_analytics':
item.add_marker(pytest.mark.pycbac_couchbase)
elif item_api[0] == 'acouchbase_analytics':
item.add_marker(pytest.mark.pycbac_acouchbase)
test_class_path = '::'.join(item_details[:-1])
if test_class_path in _UNIT_TESTS:
item.add_marker(pytest.mark.pycbac_unit)
elif test_class_path in _INTEGRATRION_TESTS:
item.add_marker(pytest.mark.pycbac_integration)