pytest-flakefighters 0.2.0__py3-none-any.whl → 0.2.1__py3-none-any.whl
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.
- _version.py +2 -2
- {pytest_flakefighters-0.2.0.dist-info → pytest_flakefighters-0.2.1.dist-info}/METADATA +15 -20
- {pytest_flakefighters-0.2.0.dist-info → pytest_flakefighters-0.2.1.dist-info}/RECORD +7 -7
- {pytest_flakefighters-0.2.0.dist-info → pytest_flakefighters-0.2.1.dist-info}/WHEEL +0 -0
- {pytest_flakefighters-0.2.0.dist-info → pytest_flakefighters-0.2.1.dist-info}/entry_points.txt +0 -0
- {pytest_flakefighters-0.2.0.dist-info → pytest_flakefighters-0.2.1.dist-info}/licenses/LICENSE +0 -0
- {pytest_flakefighters-0.2.0.dist-info → pytest_flakefighters-0.2.1.dist-info}/top_level.txt +0 -0
_version.py
CHANGED
|
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
|
|
|
28
28
|
commit_id: COMMIT_ID
|
|
29
29
|
__commit_id__: COMMIT_ID
|
|
30
30
|
|
|
31
|
-
__version__ = version = '0.2.
|
|
32
|
-
__version_tuple__ = version_tuple = (0, 2,
|
|
31
|
+
__version__ = version = '0.2.1'
|
|
32
|
+
__version_tuple__ = version_tuple = (0, 2, 1)
|
|
33
33
|
|
|
34
34
|
__commit_id__ = commit_id = None
|
|
@@ -1,43 +1,38 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pytest-flakefighters
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: Pytest plugin implementing flaky test failure detection and classification.
|
|
5
5
|
Author: TestFLARE Team
|
|
6
|
-
Project-URL: Homepage, https://test-flare.github.io/
|
|
7
6
|
Project-URL: Documentation, https://pytest-flakefighters.readthedocs.io
|
|
8
|
-
Project-URL:
|
|
7
|
+
Project-URL: Homepage, https://test-flare.github.io/
|
|
9
8
|
Project-URL: Issues, https://github.com/test-flare/pytest-flakefighters/issues
|
|
10
|
-
|
|
11
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
12
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
13
|
-
Classifier: Programming Language :: Python :: 3.13
|
|
14
|
-
Classifier: Programming Language :: Python :: 3.14
|
|
9
|
+
Project-URL: Repository, https://github.com/test-flare/pytest-flakefighters
|
|
15
10
|
Requires-Python: <3.14,>=3.10
|
|
16
11
|
Description-Content-Type: text/markdown
|
|
17
12
|
License-File: LICENSE
|
|
18
|
-
Requires-Dist: pytest>=6.2.0
|
|
19
|
-
Requires-Dist: coverage>=7.10.6
|
|
20
13
|
Requires-Dist: GitPython>=3.1.45
|
|
21
|
-
Requires-Dist:
|
|
22
|
-
Requires-Dist: sqlalchemy>=2.0.43
|
|
14
|
+
Requires-Dist: coverage>=7.10.6
|
|
23
15
|
Requires-Dist: dotenv>=0.9.9
|
|
16
|
+
Requires-Dist: nltk>=3.9
|
|
24
17
|
Requires-Dist: pandas>=2.3
|
|
25
|
-
Requires-Dist:
|
|
18
|
+
Requires-Dist: pytest>=6.2.0
|
|
26
19
|
Requires-Dist: pyyaml>=6
|
|
27
20
|
Requires-Dist: scikit-learn>=1.7
|
|
28
|
-
Requires-Dist:
|
|
21
|
+
Requires-Dist: scipy<=1.15
|
|
22
|
+
Requires-Dist: sqlalchemy>=2.0.43
|
|
23
|
+
Requires-Dist: unidiff>=0.7.5
|
|
29
24
|
Provides-Extra: dev
|
|
30
25
|
Requires-Dist: black; extra == "dev"
|
|
31
|
-
Requires-Dist: pytest-cov; extra == "dev"
|
|
32
|
-
Requires-Dist: pylint; extra == "dev"
|
|
33
|
-
Requires-Dist: pre_commit; extra == "dev"
|
|
34
|
-
Requires-Dist: sphinx-autoapi; extra == "dev"
|
|
35
|
-
Requires-Dist: sphinx_rtd_theme; extra == "dev"
|
|
36
|
-
Requires-Dist: tox>=4.31.0; extra == "dev"
|
|
37
26
|
Requires-Dist: myst_parser; extra == "dev"
|
|
38
27
|
Requires-Dist: nbsphinx; extra == "dev"
|
|
28
|
+
Requires-Dist: pre_commit; extra == "dev"
|
|
29
|
+
Requires-Dist: pylint; extra == "dev"
|
|
30
|
+
Requires-Dist: pytest-cov; extra == "dev"
|
|
39
31
|
Requires-Dist: pytest-html; extra == "dev"
|
|
40
32
|
Requires-Dist: pytest-json-report>=1.5; extra == "dev"
|
|
33
|
+
Requires-Dist: sphinx-autoapi; extra == "dev"
|
|
34
|
+
Requires-Dist: sphinx_rtd_theme; extra == "dev"
|
|
35
|
+
Requires-Dist: tox>=4.31.0; extra == "dev"
|
|
41
36
|
Provides-Extra: pg
|
|
42
37
|
Requires-Dist: psycopg2>2.9; extra == "pg"
|
|
43
38
|
Dynamic: license-file
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
_version.py,sha256=
|
|
1
|
+
_version.py,sha256=vYqoJTG51NOUmYyL0xt8asRK8vUT4lGAdal_EZ59mvw,704
|
|
2
2
|
pytest_flakefighters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
pytest_flakefighters/database_management.py,sha256=mSdrP4enD6_oT941y5KAP-Jae84FihVJEvqCUFPhrss,7105
|
|
4
4
|
pytest_flakefighters/function_coverage.py,sha256=IgzWHMFgkVrc68ZjQ1o27tGxKa8WvcMcGW8RWnpFLVw,2187
|
|
@@ -10,9 +10,9 @@ pytest_flakefighters/flakefighters/abstract_flakefighter.py,sha256=bchRwoNzQaFhS
|
|
|
10
10
|
pytest_flakefighters/flakefighters/coverage_independence.py,sha256=5swoY1jOaaGFlZNX6PdejBFVd7Gpi3zsaW5W6toIzk8,4480
|
|
11
11
|
pytest_flakefighters/flakefighters/deflaker.py,sha256=GjmAA5i7YFJKbNaheWihqUqyu9_z2NZwqy6U--ztj9c,5989
|
|
12
12
|
pytest_flakefighters/flakefighters/traceback_matching.py,sha256=LheOEqCvrBDrZJm4RK4ZFFcebWs4ggP7qRiUPg8HQpM,6926
|
|
13
|
-
pytest_flakefighters-0.2.
|
|
14
|
-
pytest_flakefighters-0.2.
|
|
15
|
-
pytest_flakefighters-0.2.
|
|
16
|
-
pytest_flakefighters-0.2.
|
|
17
|
-
pytest_flakefighters-0.2.
|
|
18
|
-
pytest_flakefighters-0.2.
|
|
13
|
+
pytest_flakefighters-0.2.1.dist-info/licenses/LICENSE,sha256=tTzR2CWQMPOp-mQIQqi0cTRkaogeBUmW06blQsBLdQg,1082
|
|
14
|
+
pytest_flakefighters-0.2.1.dist-info/METADATA,sha256=jjx8yrKom4dikhgYPFVSujnWXlxpE09IYoxKACA1O34,5517
|
|
15
|
+
pytest_flakefighters-0.2.1.dist-info/WHEEL,sha256=qELbo2s1Yzl39ZmrAibXA2jjPLUYfnVhUNTlyF1rq0Y,92
|
|
16
|
+
pytest_flakefighters-0.2.1.dist-info/entry_points.txt,sha256=xockvN1AszN2XqaET77JDIRdOafgm3DdvOtHgVw-aDU,424
|
|
17
|
+
pytest_flakefighters-0.2.1.dist-info/top_level.txt,sha256=bWwe0xVZ_l2CP8KSnztW6FafZKQZ7zUTMa1U32geY28,30
|
|
18
|
+
pytest_flakefighters-0.2.1.dist-info/RECORD,,
|
|
File without changes
|
{pytest_flakefighters-0.2.0.dist-info → pytest_flakefighters-0.2.1.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{pytest_flakefighters-0.2.0.dist-info → pytest_flakefighters-0.2.1.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|