pytest-flakefighters 0.3.0__py3-none-any.whl → 0.3.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 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.3.0'
32
- __version_tuple__ = version_tuple = (0, 3, 0)
31
+ __version__ = version = '0.3.1'
32
+ __version_tuple__ = version_tuple = (0, 3, 1)
33
33
 
34
34
  __commit_id__ = commit_id = None
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pytest-flakefighters
3
- Version: 0.3.0
3
+ Version: 0.3.1
4
4
  Summary: Pytest plugin implementing flaky test failure detection and classification.
5
5
  Author: TestFLARE Team
6
6
  Project-URL: Documentation, https://pytest-flakefighters.readthedocs.io
@@ -38,22 +38,26 @@ Requires-Dist: psycopg2>2.9; extra == "pg"
38
38
  Dynamic: license-file
39
39
 
40
40
  # Pytest FlakeFighters
41
- ### Pytest plugin implementing flaky test failure detection and classification.
42
41
 
43
42
  [![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
44
43
  [![PyPI version](https://img.shields.io/pypi/v/pytest-flakefighters.svg)](https://pypi.org/project/pytest-flakefighters)
45
44
  [![Python versions](https://img.shields.io/badge/python-3.10_--_3.13-blue)](https://pypi.org/project/pytest-flakefighters)
46
45
  ![Test status](https://github.com/test-flare/pytest-flakefighters/actions/workflows/ci-tests.yaml/badge.svg)
47
46
  [![codecov](https://codecov.io/gh/test-flare/pytest-flakefighters/branch/main/graph/badge.svg?token=04ijFVrb4a)](https://codecov.io/gh/test-flare/pytest-flakefighters)
48
- [![Documentation Status](https://readthedocs.org/projects/causal-testing-framework/badge/?version=latest)](https://causal-testing-framework.readthedocs.io/en/latest/?badge=latest)
47
+ [![Documentation Status](https://readthedocs.org/projects/pytest-flakefighters/badge/?version=latest)](https://pytest-flakefighters.readthedocs.io/en/latest/?badge=latest)
49
48
  ![GitHub License](https://img.shields.io/github/license/test-flare/pytest-flakefighters)
50
49
 
51
-
50
+ ### Pytest plugin implementing flaky test failure detection and classification.
51
+ Read more about flaky tests [here](https://docs.pytest.org/en/stable/explanation/flaky.html).
52
52
 
53
53
  ## Features
54
54
 
55
- - Implements the [DeFlaker algorithm](https://deflaker.com/) for pytest
56
-
55
+ - Implements the [DeFlaker algorithm](http://www.deflaker.org/get-rid-of-your-flakes/) for pytest
56
+ - Implements two traceback-matching classifiers from [Alshammari et al. (2024)](https://doi.org/10.1109/ICST60714.2024.00031).
57
+ - Implements a novel coverage-independence classifier that classifies tests as flaky if they fail independently of passing test cases that exercise overlapping code.
58
+ - Optionally rerun flaky failures
59
+ - Output results to JSON, HTML, or JUnitXML
60
+ - Save test outcome history to a remote or local database
57
61
 
58
62
  ## Installation
59
63
 
@@ -1,4 +1,4 @@
1
- _version.py,sha256=5zTqm8rgXsWYBpB2M3Zw_K1D-aV8wP7NsBLrmMKkrAQ,704
1
+ _version.py,sha256=gGLpQUQx-ty9SEy9PYw9OgJWWzJLBnCpfJOfzL7SjlI,704
2
2
  pytest_flakefighters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
3
  pytest_flakefighters/config.py,sha256=NBqbonht0O4L_P3hV_g__LiD6Fo5aGIau7D84hBA5kE,3460
4
4
  pytest_flakefighters/database_management.py,sha256=FZTDYG9uVlPY2j874I_YDFQ9kuNXhm4P9fL3ckrg8MY,10427
@@ -11,9 +11,9 @@ pytest_flakefighters/flakefighters/abstract_flakefighter.py,sha256=bchRwoNzQaFhS
11
11
  pytest_flakefighters/flakefighters/coverage_independence.py,sha256=5swoY1jOaaGFlZNX6PdejBFVd7Gpi3zsaW5W6toIzk8,4480
12
12
  pytest_flakefighters/flakefighters/deflaker.py,sha256=eqqfhvKrxYIbbtm_pdqTw2AwmcHo5vBh3HfqyscusdU,5911
13
13
  pytest_flakefighters/flakefighters/traceback_matching.py,sha256=L-3vVdB9aTjGHrsCAh9R8L51YQoSfRUfhMioIywoJqM,6808
14
- pytest_flakefighters-0.3.0.dist-info/licenses/LICENSE,sha256=tTzR2CWQMPOp-mQIQqi0cTRkaogeBUmW06blQsBLdQg,1082
15
- pytest_flakefighters-0.3.0.dist-info/METADATA,sha256=Um8M4PJ23WhSh-rBzzp937htMWXO-6u8DHbIQFBhqZo,5507
16
- pytest_flakefighters-0.3.0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
17
- pytest_flakefighters-0.3.0.dist-info/entry_points.txt,sha256=xockvN1AszN2XqaET77JDIRdOafgm3DdvOtHgVw-aDU,424
18
- pytest_flakefighters-0.3.0.dist-info/top_level.txt,sha256=bWwe0xVZ_l2CP8KSnztW6FafZKQZ7zUTMa1U32geY28,30
19
- pytest_flakefighters-0.3.0.dist-info/RECORD,,
14
+ pytest_flakefighters-0.3.1.dist-info/licenses/LICENSE,sha256=tTzR2CWQMPOp-mQIQqi0cTRkaogeBUmW06blQsBLdQg,1082
15
+ pytest_flakefighters-0.3.1.dist-info/METADATA,sha256=qJ0VwrCDLgYhWnZASbHn17hivEt1XJVeszRfB49Ko6I,6044
16
+ pytest_flakefighters-0.3.1.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
17
+ pytest_flakefighters-0.3.1.dist-info/entry_points.txt,sha256=xockvN1AszN2XqaET77JDIRdOafgm3DdvOtHgVw-aDU,424
18
+ pytest_flakefighters-0.3.1.dist-info/top_level.txt,sha256=bWwe0xVZ_l2CP8KSnztW6FafZKQZ7zUTMa1U32geY28,30
19
+ pytest_flakefighters-0.3.1.dist-info/RECORD,,