testhide-pytest-plugin 0.2.2__tar.gz → 0.2.3__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.
- {testhide_pytest_plugin-0.2.2/src/testhide_pytest_plugin.egg-info → testhide_pytest_plugin-0.2.3}/PKG-INFO +1 -1
- {testhide_pytest_plugin-0.2.2 → testhide_pytest_plugin-0.2.3}/pyproject.toml +1 -1
- {testhide_pytest_plugin-0.2.2 → testhide_pytest_plugin-0.2.3}/src/testhide_plugin/plugin.py +3 -3
- {testhide_pytest_plugin-0.2.2 → testhide_pytest_plugin-0.2.3/src/testhide_pytest_plugin.egg-info}/PKG-INFO +1 -1
- {testhide_pytest_plugin-0.2.2 → testhide_pytest_plugin-0.2.3}/LICENSE +0 -0
- {testhide_pytest_plugin-0.2.2 → testhide_pytest_plugin-0.2.3}/README.md +0 -0
- {testhide_pytest_plugin-0.2.2 → testhide_pytest_plugin-0.2.3}/setup.cfg +0 -0
- {testhide_pytest_plugin-0.2.2 → testhide_pytest_plugin-0.2.3}/src/testhide_plugin/__init__.py +0 -0
- {testhide_pytest_plugin-0.2.2 → testhide_pytest_plugin-0.2.3}/src/testhide_plugin/hookspecs.py +0 -0
- {testhide_pytest_plugin-0.2.2 → testhide_pytest_plugin-0.2.3}/src/testhide_pytest_plugin.egg-info/SOURCES.txt +0 -0
- {testhide_pytest_plugin-0.2.2 → testhide_pytest_plugin-0.2.3}/src/testhide_pytest_plugin.egg-info/dependency_links.txt +0 -0
- {testhide_pytest_plugin-0.2.2 → testhide_pytest_plugin-0.2.3}/src/testhide_pytest_plugin.egg-info/entry_points.txt +0 -0
- {testhide_pytest_plugin-0.2.2 → testhide_pytest_plugin-0.2.3}/src/testhide_pytest_plugin.egg-info/requires.txt +0 -0
- {testhide_pytest_plugin-0.2.2 → testhide_pytest_plugin-0.2.3}/src/testhide_pytest_plugin.egg-info/top_level.txt +0 -0
|
@@ -113,10 +113,10 @@ class TesthidePlugin:
|
|
|
113
113
|
if not self.jira:
|
|
114
114
|
return None
|
|
115
115
|
try:
|
|
116
|
-
issues = self.jira.search_issues(f'description ~ "
|
|
116
|
+
issues = self.jira.search_issues(f'description ~ "{test_id}" ORDER BY updated')
|
|
117
117
|
return issues[0] if issues else None
|
|
118
118
|
except Exception as e:
|
|
119
|
-
self.config.warn('JIRA_SEARCH_ERROR', f"Failed to search JIRA for
|
|
119
|
+
self.config.warn('JIRA_SEARCH_ERROR', f"Failed to search JIRA for {test_id}: {e}")
|
|
120
120
|
return None
|
|
121
121
|
|
|
122
122
|
def _get_cleaned_traceback(self, report):
|
|
@@ -203,7 +203,7 @@ class TesthidePlugin:
|
|
|
203
203
|
classname = os.path.splitext(os.path.basename(filepath))[0]
|
|
204
204
|
|
|
205
205
|
fail_id = getattr(item, 'fail_id', None)
|
|
206
|
-
test_resolution = '
|
|
206
|
+
test_resolution = 'Unresolved'
|
|
207
207
|
if report.failed:
|
|
208
208
|
tag = 'error' if report.when == 'setup' else 'failure'
|
|
209
209
|
failure_message = str(report.longrepr.reprcrash.message) if hasattr(report.longrepr, 'reprcrash') else str(
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{testhide_pytest_plugin-0.2.2 → testhide_pytest_plugin-0.2.3}/src/testhide_plugin/__init__.py
RENAMED
|
File without changes
|
{testhide_pytest_plugin-0.2.2 → testhide_pytest_plugin-0.2.3}/src/testhide_plugin/hookspecs.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|