pytest-html-plus 0.4.5__tar.gz → 0.4.6__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.
- {pytest_html_plus-0.4.5 → pytest_html_plus-0.4.6}/PKG-INFO +1 -1
- {pytest_html_plus-0.4.5 → pytest_html_plus-0.4.6}/pyproject.toml +1 -1
- {pytest_html_plus-0.4.5 → pytest_html_plus-0.4.6}/pytest_html_plus/generate_html_report.py +2 -2
- {pytest_html_plus-0.4.5 → pytest_html_plus-0.4.6}/LICENSE +0 -0
- {pytest_html_plus-0.4.5 → pytest_html_plus-0.4.6}/README.md +0 -0
- {pytest_html_plus-0.4.5 → pytest_html_plus-0.4.6}/pytest_html_plus/__init__.py +0 -0
- {pytest_html_plus-0.4.5 → pytest_html_plus-0.4.6}/pytest_html_plus/compute_filter_counts.py +0 -0
- {pytest_html_plus-0.4.5 → pytest_html_plus-0.4.6}/pytest_html_plus/compute_report_metadata.py +0 -0
- {pytest_html_plus-0.4.5 → pytest_html_plus-0.4.6}/pytest_html_plus/extract_link.py +0 -0
- {pytest_html_plus-0.4.5 → pytest_html_plus-0.4.6}/pytest_html_plus/json_merge.py +0 -0
- {pytest_html_plus-0.4.5 → pytest_html_plus-0.4.6}/pytest_html_plus/json_to_xml_converter.py +0 -0
- {pytest_html_plus-0.4.5 → pytest_html_plus-0.4.6}/pytest_html_plus/plugin.py +0 -0
- {pytest_html_plus-0.4.5 → pytest_html_plus-0.4.6}/pytest_html_plus/resolver_driver.py +0 -0
- {pytest_html_plus-0.4.5 → pytest_html_plus-0.4.6}/pytest_html_plus/send_email_report.py +0 -0
- {pytest_html_plus-0.4.5 → pytest_html_plus-0.4.6}/pytest_html_plus/utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: pytest-html-plus
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.6
|
|
4
4
|
Summary: Generate Actionable, automatic screenshots, unified Pytest HTML report in less than 3 seconds — no hooks, merge plugins, no config, xdist-ready.
|
|
5
5
|
License: MIT
|
|
6
6
|
Keywords: pytest,pytest-html-plus,pytest-plugin,html-test-report,beautiful-test-report,shareable-test-results,test-report,test-results,unit-test-report,functional-test-report,test-summary,reporting,python-testing,automated-testing,test-runner,report-generator,continuous-integration,ci-cd,github-actions,jenkins,pytest-html,pytest-report
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "pytest-html-plus"
|
|
3
|
-
version = "0.4.
|
|
3
|
+
version = "0.4.6"
|
|
4
4
|
description = "Generate Actionable, automatic screenshots, unified Pytest HTML report in less than 3 seconds — no hooks, merge plugins, no config, xdist-ready."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
authors = ["reporterplus"]
|
|
@@ -376,9 +376,9 @@ class JSONReporter:
|
|
|
376
376
|
// Sort and reorder
|
|
377
377
|
testElements.sort((a, b) => {{
|
|
378
378
|
const aDuration = parseFloat(
|
|
379
|
-
a.querySelector('.timestamp').textContent.replace(/[
|
|
379
|
+
a.querySelector('.timestamp').textContent.replace(/[^\\d.]/g, '')
|
|
380
380
|
) || 0;
|
|
381
|
-
const bDuration = parseFloat(b.querySelector('.timestamp').textContent.replace(/[
|
|
381
|
+
const bDuration = parseFloat(b.querySelector('.timestamp').textContent.replace(/[^\\d.]/g, '')) || 0;
|
|
382
382
|
return bDuration - aDuration;
|
|
383
383
|
}});
|
|
384
384
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pytest_html_plus-0.4.5 → pytest_html_plus-0.4.6}/pytest_html_plus/compute_report_metadata.py
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
|