pytestomatio 2.8.1rc2__tar.gz → 2.8.2.dev2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pytestomatio-2.8.1rc2/pytestomatio.egg-info → pytestomatio-2.8.2.dev2}/PKG-INFO +1 -1
- {pytestomatio-2.8.1rc2 → pytestomatio-2.8.2.dev2}/pyproject.toml +1 -1
- {pytestomatio-2.8.1rc2 → pytestomatio-2.8.2.dev2}/pytestomatio/main.py +1 -3
- {pytestomatio-2.8.1rc2 → pytestomatio-2.8.2.dev2}/pytestomatio/testomatio/testRunConfig.py +2 -2
- {pytestomatio-2.8.1rc2 → pytestomatio-2.8.2.dev2/pytestomatio.egg-info}/PKG-INFO +1 -1
- {pytestomatio-2.8.1rc2 → pytestomatio-2.8.2.dev2}/LICENSE +0 -0
- {pytestomatio-2.8.1rc2 → pytestomatio-2.8.2.dev2}/README.md +0 -0
- {pytestomatio-2.8.1rc2 → pytestomatio-2.8.2.dev2}/pytestomatio/__init__.py +0 -0
- {pytestomatio-2.8.1rc2 → pytestomatio-2.8.2.dev2}/pytestomatio/connect/__init__.py +0 -0
- {pytestomatio-2.8.1rc2 → pytestomatio-2.8.2.dev2}/pytestomatio/connect/connector.py +0 -0
- {pytestomatio-2.8.1rc2 → pytestomatio-2.8.2.dev2}/pytestomatio/connect/s3_connector.py +0 -0
- {pytestomatio-2.8.1rc2 → pytestomatio-2.8.2.dev2}/pytestomatio/decor/__init__.py +0 -0
- {pytestomatio-2.8.1rc2 → pytestomatio-2.8.2.dev2}/pytestomatio/decor/decorator_updater.py +0 -0
- {pytestomatio-2.8.1rc2 → pytestomatio-2.8.2.dev2}/pytestomatio/decor/default.py +0 -0
- {pytestomatio-2.8.1rc2 → pytestomatio-2.8.2.dev2}/pytestomatio/decor/pep8.py +0 -0
- {pytestomatio-2.8.1rc2 → pytestomatio-2.8.2.dev2}/pytestomatio/testing/__init__.py +0 -0
- {pytestomatio-2.8.1rc2 → pytestomatio-2.8.2.dev2}/pytestomatio/testing/code_collector.py +0 -0
- {pytestomatio-2.8.1rc2 → pytestomatio-2.8.2.dev2}/pytestomatio/testing/testItem.py +0 -0
- {pytestomatio-2.8.1rc2 → pytestomatio-2.8.2.dev2}/pytestomatio/testomatio/__init__.py +0 -0
- {pytestomatio-2.8.1rc2 → pytestomatio-2.8.2.dev2}/pytestomatio/testomatio/testomat_item.py +0 -0
- {pytestomatio-2.8.1rc2 → pytestomatio-2.8.2.dev2}/pytestomatio/testomatio/testomatio.py +0 -0
- {pytestomatio-2.8.1rc2 → pytestomatio-2.8.2.dev2}/pytestomatio/utils/__init__.py +0 -0
- {pytestomatio-2.8.1rc2 → pytestomatio-2.8.2.dev2}/pytestomatio/utils/helper.py +0 -0
- {pytestomatio-2.8.1rc2 → pytestomatio-2.8.2.dev2}/pytestomatio/utils/parser_setup.py +0 -0
- {pytestomatio-2.8.1rc2 → pytestomatio-2.8.2.dev2}/pytestomatio/utils/validations.py +0 -0
- {pytestomatio-2.8.1rc2 → pytestomatio-2.8.2.dev2}/pytestomatio.egg-info/SOURCES.txt +0 -0
- {pytestomatio-2.8.1rc2 → pytestomatio-2.8.2.dev2}/pytestomatio.egg-info/dependency_links.txt +0 -0
- {pytestomatio-2.8.1rc2 → pytestomatio-2.8.2.dev2}/pytestomatio.egg-info/entry_points.txt +0 -0
- {pytestomatio-2.8.1rc2 → pytestomatio-2.8.2.dev2}/pytestomatio.egg-info/requires.txt +0 -0
- {pytestomatio-2.8.1rc2 → pytestomatio-2.8.2.dev2}/pytestomatio.egg-info/top_level.txt +0 -0
- {pytestomatio-2.8.1rc2 → pytestomatio-2.8.2.dev2}/setup.cfg +0 -0
- {pytestomatio-2.8.1rc2 → pytestomatio-2.8.2.dev2}/tests/sub/__init__.py +0 -0
- {pytestomatio-2.8.1rc2 → pytestomatio-2.8.2.dev2}/tests/sub/sub_mob/__init__.py +0 -0
- {pytestomatio-2.8.1rc2 → pytestomatio-2.8.2.dev2}/tests/sub/sub_mob/sub_sub_class_test.py +0 -0
- {pytestomatio-2.8.1rc2 → pytestomatio-2.8.2.dev2}/tests/sub/sub_mob/sub_sub_test.py +0 -0
- {pytestomatio-2.8.1rc2 → pytestomatio-2.8.2.dev2}/tests/sub/test_class_sub.py +0 -0
- {pytestomatio-2.8.1rc2 → pytestomatio-2.8.2.dev2}/tests/sub/test_sub.py +0 -0
- {pytestomatio-2.8.1rc2 → pytestomatio-2.8.2.dev2}/tests/test_class_root.py +0 -0
- {pytestomatio-2.8.1rc2 → pytestomatio-2.8.2.dev2}/tests/test_decorators.py +0 -0
- {pytestomatio-2.8.1rc2 → pytestomatio-2.8.2.dev2}/tests/test_root.py +0 -0
|
@@ -34,9 +34,7 @@ def pytest_configure(config: Config):
|
|
|
34
34
|
if option == 'debug':
|
|
35
35
|
return
|
|
36
36
|
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
pytest.testomatio = Testomatio(TestRunConfig(is_parallel))
|
|
37
|
+
pytest.testomatio = Testomatio(TestRunConfig())
|
|
40
38
|
|
|
41
39
|
url = config.getini('testomatio_url')
|
|
42
40
|
project = os.environ.get('TESTOMATIO')
|
|
@@ -5,7 +5,7 @@ from typing import Optional
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
class TestRunConfig:
|
|
8
|
-
def __init__(self
|
|
8
|
+
def __init__(self):
|
|
9
9
|
self.test_run_id = os.environ.get('TESTOMATIO_RUN_ID') or None
|
|
10
10
|
run = os.environ.get('TESTOMATIO_RUN') or None
|
|
11
11
|
title = os.environ.get('TESTOMATIO_TITLE') or None
|
|
@@ -14,7 +14,7 @@ class TestRunConfig:
|
|
|
14
14
|
self.environment = safe_string_list(os.environ.get('TESTOMATIO_ENV'))
|
|
15
15
|
self.label = safe_string_list(os.environ.get('TESTOMATIO_LABEL'))
|
|
16
16
|
self.group_title = os.environ.get('TESTOMATIO_RUNGROUP_TITLE') or None
|
|
17
|
-
self.parallel =
|
|
17
|
+
self.parallel = True
|
|
18
18
|
# stands for run with shards
|
|
19
19
|
self.shared_run = run_or_title is not None
|
|
20
20
|
self.status_request = {}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pytestomatio-2.8.1rc2 → pytestomatio-2.8.2.dev2}/pytestomatio.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|