pytest-html-plus 0.4.0__tar.gz → 0.4.1__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.0 → pytest_html_plus-0.4.1}/PKG-INFO +12 -6
- {pytest_html_plus-0.4.0 → pytest_html_plus-0.4.1}/README.md +10 -3
- {pytest_html_plus-0.4.0 → pytest_html_plus-0.4.1}/pyproject.toml +5 -3
- {pytest_html_plus-0.4.0 → pytest_html_plus-0.4.1}/LICENSE +0 -0
- {pytest_html_plus-0.4.0 → pytest_html_plus-0.4.1}/pytest_html_plus/__init__.py +0 -0
- {pytest_html_plus-0.4.0 → pytest_html_plus-0.4.1}/pytest_html_plus/compute_filter_counts.py +0 -0
- {pytest_html_plus-0.4.0 → pytest_html_plus-0.4.1}/pytest_html_plus/compute_report_metadata.py +0 -0
- {pytest_html_plus-0.4.0 → pytest_html_plus-0.4.1}/pytest_html_plus/extract_link.py +0 -0
- {pytest_html_plus-0.4.0 → pytest_html_plus-0.4.1}/pytest_html_plus/generate_html_report.py +0 -0
- {pytest_html_plus-0.4.0 → pytest_html_plus-0.4.1}/pytest_html_plus/json_merge.py +0 -0
- {pytest_html_plus-0.4.0 → pytest_html_plus-0.4.1}/pytest_html_plus/json_to_xml_converter.py +0 -0
- {pytest_html_plus-0.4.0 → pytest_html_plus-0.4.1}/pytest_html_plus/plugin.py +0 -0
- {pytest_html_plus-0.4.0 → pytest_html_plus-0.4.1}/pytest_html_plus/resolver_driver.py +0 -0
- {pytest_html_plus-0.4.0 → pytest_html_plus-0.4.1}/pytest_html_plus/send_email_report.py +0 -0
- {pytest_html_plus-0.4.0 → pytest_html_plus-0.4.1}/pytest_html_plus/utils.py +0 -0
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: pytest-html-plus
|
|
3
|
-
Version: 0.4.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 0.4.1
|
|
4
|
+
Summary: Get started with rich pytest reports in under 3 seconds. Just install the plugin — no setup required. The simplest, fastest reporter for pytest.
|
|
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
|
|
7
|
-
Author:
|
|
7
|
+
Author: reporterplus
|
|
8
8
|
Requires-Python: >=3.9,<4.0
|
|
9
9
|
Classifier: License :: OSI Approved :: MIT License
|
|
10
10
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -20,8 +20,8 @@ Project-URL: Source, https://github.com/reporterplus/pytest-html-plus
|
|
|
20
20
|
Project-URL: Tracker, https://github.com/reporterplus/pytest-html-plus/issues
|
|
21
21
|
Description-Content-Type: text/markdown
|
|
22
22
|
|
|
23
|
-
|
|
24
|
-
>
|
|
23
|
+
⚡ **Plug. Play. Debug without delay.**
|
|
24
|
+
> _Get started with rich pytest reports in under 3 seconds. Just install — no setup required. The simplest, fastest reporter for pytest._
|
|
25
25
|
|
|
26
26
|
## Get a self-contained, actionable, easy-to-read single page HTML unified reports summarizing all your test results — no hassle, just clarity. Detect **flaky tests**, and optionally send reports via email**. Works beautifully with or without `xdist`.
|
|
27
27
|
|
|
@@ -39,6 +39,13 @@ pip install pytest-html-plus
|
|
|
39
39
|
poetry add pytest-html-plus
|
|
40
40
|
```
|
|
41
41
|
|
|
42
|
+
## Pytest HTML Plus Action
|
|
43
|
+
|
|
44
|
+
If you don’t want the burden of installing pytest-html-plus manually and your project already manages dependencies with `requirements.txt` or Poetry, use this GitHub Action to generate rich pytest reports automatically.
|
|
45
|
+
|
|
46
|
+
[](https://github.com/marketplace/actions/pytest-html-plus-action)
|
|
47
|
+
[](https://pytest-html-plus.readthedocs.io/en/main/marketplace/usage.html)
|
|
48
|
+
|
|
42
49
|
## ✨ Features
|
|
43
50
|
|
|
44
51
|
#### 🧩 Seamless Combined XML Export to your favourite test management tools — No Plugins Needed
|
|
@@ -148,4 +155,3 @@ See the [contribution guide](https://pytest-html-plus.readthedocs.io/en/latest/c
|
|
|
148
155
|
## 📜 License
|
|
149
156
|
|
|
150
157
|
MIT
|
|
151
|
-
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
>
|
|
1
|
+
⚡ **Plug. Play. Debug without delay.**
|
|
2
|
+
> _Get started with rich pytest reports in under 3 seconds. Just install — no setup required. The simplest, fastest reporter for pytest._
|
|
3
3
|
|
|
4
4
|
## Get a self-contained, actionable, easy-to-read single page HTML unified reports summarizing all your test results — no hassle, just clarity. Detect **flaky tests**, and optionally send reports via email**. Works beautifully with or without `xdist`.
|
|
5
5
|
|
|
@@ -17,6 +17,13 @@ pip install pytest-html-plus
|
|
|
17
17
|
poetry add pytest-html-plus
|
|
18
18
|
```
|
|
19
19
|
|
|
20
|
+
## Pytest HTML Plus Action
|
|
21
|
+
|
|
22
|
+
If you don’t want the burden of installing pytest-html-plus manually and your project already manages dependencies with `requirements.txt` or Poetry, use this GitHub Action to generate rich pytest reports automatically.
|
|
23
|
+
|
|
24
|
+
[](https://github.com/marketplace/actions/pytest-html-plus-action)
|
|
25
|
+
[](https://pytest-html-plus.readthedocs.io/en/main/marketplace/usage.html)
|
|
26
|
+
|
|
20
27
|
## ✨ Features
|
|
21
28
|
|
|
22
29
|
#### 🧩 Seamless Combined XML Export to your favourite test management tools — No Plugins Needed
|
|
@@ -125,4 +132,4 @@ See the [contribution guide](https://pytest-html-plus.readthedocs.io/en/latest/c
|
|
|
125
132
|
|
|
126
133
|
## 📜 License
|
|
127
134
|
|
|
128
|
-
MIT
|
|
135
|
+
MIT
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "pytest-html-plus"
|
|
3
|
-
version = "0.4.
|
|
4
|
-
description = "
|
|
3
|
+
version = "0.4.1"
|
|
4
|
+
description = "Get started with rich pytest reports in under 3 seconds. Just install the plugin — no setup required. The simplest, fastest reporter for pytest."
|
|
5
5
|
readme = "README.md"
|
|
6
|
-
authors = ["
|
|
6
|
+
authors = ["reporterplus"]
|
|
7
7
|
license = "MIT"
|
|
8
8
|
packages = [{ include = "pytest_html_plus" }]
|
|
9
9
|
keywords = [
|
|
@@ -47,6 +47,8 @@ pytest-cov = "^6.2.1"
|
|
|
47
47
|
playwright = "^1.53.0"
|
|
48
48
|
pytest-playwright = "^0.7.0"
|
|
49
49
|
pytest-xdist = "^3.8.0"
|
|
50
|
+
selenium = "^4.8.0"
|
|
51
|
+
webdriver-manager = "^3.8.5"
|
|
50
52
|
|
|
51
53
|
[build-system]
|
|
52
54
|
requires = ["poetry-core"]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pytest_html_plus-0.4.0 → pytest_html_plus-0.4.1}/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
|
|
File without changes
|