pytest-flakefighters 0.2.1__tar.gz → 0.2.2__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.
Files changed (62) hide show
  1. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/PKG-INFO +2 -2
  2. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/README.md +1 -1
  3. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/src/_version.py +3 -3
  4. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/src/pytest_flakefighters.egg-info/PKG-INFO +2 -2
  5. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/.github/workflows/ci-mega-linter.yml +0 -0
  6. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/.github/workflows/ci-tests-drafts.yaml +0 -0
  7. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/.github/workflows/ci-tests.yaml +0 -0
  8. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/.github/workflows/publish-pypi.yaml +0 -0
  9. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/.gitignore +0 -0
  10. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/.mega-linter.yaml +0 -0
  11. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/.pre-commit-config.yaml +0 -0
  12. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/.readthedocs.yaml +0 -0
  13. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/LICENSE +0 -0
  14. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/codecov.yml +0 -0
  15. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/docs/Makefile +0 -0
  16. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/docs/make.bat +0 -0
  17. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/docs/source/_static/css/custom.css +0 -0
  18. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/docs/source/_static/images/favicon.png +0 -0
  19. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/docs/source/_static/images/logo.png +0 -0
  20. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/docs/source/acknowlegements.rst +0 -0
  21. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/docs/source/conf.py +0 -0
  22. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/docs/source/configuration.rst +0 -0
  23. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/docs/source/dev/actions_and_webhooks.rst +0 -0
  24. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/docs/source/dev/documentation.rst +0 -0
  25. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/docs/source/dev/version_release.rst +0 -0
  26. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/docs/source/glossary.rst +0 -0
  27. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/docs/source/index.rst +0 -0
  28. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/docs/source/installation.rst +0 -0
  29. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/docs/source/requirements.txt +0 -0
  30. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/pyproject.toml +0 -0
  31. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/setup.cfg +0 -0
  32. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/src/pytest_flakefighters/__init__.py +0 -0
  33. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/src/pytest_flakefighters/database_management.py +0 -0
  34. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/src/pytest_flakefighters/flakefighters/__init__.py +0 -0
  35. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/src/pytest_flakefighters/flakefighters/abstract_flakefighter.py +0 -0
  36. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/src/pytest_flakefighters/flakefighters/coverage_independence.py +0 -0
  37. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/src/pytest_flakefighters/flakefighters/deflaker.py +0 -0
  38. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/src/pytest_flakefighters/flakefighters/traceback_matching.py +0 -0
  39. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/src/pytest_flakefighters/function_coverage.py +0 -0
  40. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/src/pytest_flakefighters/main.py +0 -0
  41. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/src/pytest_flakefighters/plugin.py +0 -0
  42. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/src/pytest_flakefighters/rerun_strategies.py +0 -0
  43. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/src/pytest_flakefighters.egg-info/SOURCES.txt +0 -0
  44. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/src/pytest_flakefighters.egg-info/dependency_links.txt +0 -0
  45. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/src/pytest_flakefighters.egg-info/entry_points.txt +0 -0
  46. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/src/pytest_flakefighters.egg-info/requires.txt +0 -0
  47. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/src/pytest_flakefighters.egg-info/top_level.txt +0 -0
  48. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/tests/__init__.py +0 -0
  49. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/tests/conftest.py +0 -0
  50. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/tests/flakefighters/test_coverage_independence.py +0 -0
  51. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/tests/flakefighters/test_deflaker.py +0 -0
  52. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/tests/flakefighters/test_traceback_matching.py +0 -0
  53. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/tests/resources/deflaker_broken.py +0 -0
  54. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/tests/resources/deflaker_example.py +0 -0
  55. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/tests/resources/flaky_reruns.py +0 -0
  56. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/tests/resources/pass_fail_flaky.py +0 -0
  57. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/tests/resources/test.txt +0 -0
  58. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/tests/resources/triangle.py +0 -0
  59. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/tests/test_database_management.py +0 -0
  60. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/tests/test_end_2_end.py +0 -0
  61. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/tests/test_function_coverage.py +0 -0
  62. {pytest_flakefighters-0.2.1 → pytest_flakefighters-0.2.2}/tests/test_rerun_strategies.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pytest-flakefighters
3
- Version: 0.2.1
3
+ Version: 0.2.2
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
@@ -42,7 +42,7 @@ Dynamic: license-file
42
42
 
43
43
  [![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
44
  [![PyPI version](https://img.shields.io/pypi/v/pytest-flakefighters.svg)](https://pypi.org/project/pytest-flakefighters)
45
- [![Python versions](https://img.shields.io/pypi/pyversions/pytest-flakefighters.svg)](https://pypi.org/project/pytest-flakefighters)
45
+ [![Python versions](https://img.shields.io/pypi/pyversions/pytest-flakefighters.svg)](https://img.shields.io/badge/python-3.10_--_3.13-blue)
46
46
  ![Test status](https://github.com/test-flare/pytest-flakefighters/actions/workflows/ci-tests.yaml/badge.svg)
47
47
  [![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
48
  [![Documentation Status](https://readthedocs.org/projects/causal-testing-framework/badge/?version=latest)](https://causal-testing-framework.readthedocs.io/en/latest/?badge=latest)
@@ -3,7 +3,7 @@
3
3
 
4
4
  [![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)
5
5
  [![PyPI version](https://img.shields.io/pypi/v/pytest-flakefighters.svg)](https://pypi.org/project/pytest-flakefighters)
6
- [![Python versions](https://img.shields.io/pypi/pyversions/pytest-flakefighters.svg)](https://pypi.org/project/pytest-flakefighters)
6
+ [![Python versions](https://img.shields.io/pypi/pyversions/pytest-flakefighters.svg)](https://img.shields.io/badge/python-3.10_--_3.13-blue)
7
7
  ![Test status](https://github.com/test-flare/pytest-flakefighters/actions/workflows/ci-tests.yaml/badge.svg)
8
8
  [![codecov](https://codecov.io/gh/test-flare/pytest-flakefighters/branch/main/graph/badge.svg?token=04ijFVrb4a)](https://codecov.io/gh/test-flare/pytest-flakefighters)
9
9
  [![Documentation Status](https://readthedocs.org/projects/causal-testing-framework/badge/?version=latest)](https://causal-testing-framework.readthedocs.io/en/latest/?badge=latest)
@@ -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.1'
32
- __version_tuple__ = version_tuple = (0, 2, 1)
31
+ __version__ = version = '0.2.2'
32
+ __version_tuple__ = version_tuple = (0, 2, 2)
33
33
 
34
- __commit_id__ = commit_id = 'gfcca48c00'
34
+ __commit_id__ = commit_id = 'g61c8caa8e'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pytest-flakefighters
3
- Version: 0.2.1
3
+ Version: 0.2.2
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
@@ -42,7 +42,7 @@ Dynamic: license-file
42
42
 
43
43
  [![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
44
  [![PyPI version](https://img.shields.io/pypi/v/pytest-flakefighters.svg)](https://pypi.org/project/pytest-flakefighters)
45
- [![Python versions](https://img.shields.io/pypi/pyversions/pytest-flakefighters.svg)](https://pypi.org/project/pytest-flakefighters)
45
+ [![Python versions](https://img.shields.io/pypi/pyversions/pytest-flakefighters.svg)](https://img.shields.io/badge/python-3.10_--_3.13-blue)
46
46
  ![Test status](https://github.com/test-flare/pytest-flakefighters/actions/workflows/ci-tests.yaml/badge.svg)
47
47
  [![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
48
  [![Documentation Status](https://readthedocs.org/projects/causal-testing-framework/badge/?version=latest)](https://causal-testing-framework.readthedocs.io/en/latest/?badge=latest)