pytest-flakefighters 0.2.0__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.0 → pytest_flakefighters-0.2.2}/.pre-commit-config.yaml +4 -0
  2. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/PKG-INFO +16 -21
  3. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/README.md +1 -1
  4. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/pyproject.toml +84 -83
  5. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/src/_version.py +3 -3
  6. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/src/pytest_flakefighters.egg-info/PKG-INFO +16 -21
  7. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/.github/workflows/ci-mega-linter.yml +0 -0
  8. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/.github/workflows/ci-tests-drafts.yaml +0 -0
  9. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/.github/workflows/ci-tests.yaml +0 -0
  10. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/.github/workflows/publish-pypi.yaml +0 -0
  11. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/.gitignore +0 -0
  12. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/.mega-linter.yaml +0 -0
  13. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/.readthedocs.yaml +0 -0
  14. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/LICENSE +0 -0
  15. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/codecov.yml +0 -0
  16. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/docs/Makefile +0 -0
  17. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/docs/make.bat +0 -0
  18. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/docs/source/_static/css/custom.css +0 -0
  19. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/docs/source/_static/images/favicon.png +0 -0
  20. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/docs/source/_static/images/logo.png +0 -0
  21. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/docs/source/acknowlegements.rst +0 -0
  22. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/docs/source/conf.py +0 -0
  23. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/docs/source/configuration.rst +0 -0
  24. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/docs/source/dev/actions_and_webhooks.rst +0 -0
  25. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/docs/source/dev/documentation.rst +0 -0
  26. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/docs/source/dev/version_release.rst +0 -0
  27. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/docs/source/glossary.rst +0 -0
  28. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/docs/source/index.rst +0 -0
  29. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/docs/source/installation.rst +0 -0
  30. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/docs/source/requirements.txt +0 -0
  31. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/setup.cfg +0 -0
  32. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/src/pytest_flakefighters/__init__.py +0 -0
  33. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/src/pytest_flakefighters/database_management.py +0 -0
  34. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/src/pytest_flakefighters/flakefighters/__init__.py +0 -0
  35. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/src/pytest_flakefighters/flakefighters/abstract_flakefighter.py +0 -0
  36. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/src/pytest_flakefighters/flakefighters/coverage_independence.py +0 -0
  37. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/src/pytest_flakefighters/flakefighters/deflaker.py +0 -0
  38. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/src/pytest_flakefighters/flakefighters/traceback_matching.py +0 -0
  39. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/src/pytest_flakefighters/function_coverage.py +0 -0
  40. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/src/pytest_flakefighters/main.py +0 -0
  41. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/src/pytest_flakefighters/plugin.py +0 -0
  42. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/src/pytest_flakefighters/rerun_strategies.py +0 -0
  43. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/src/pytest_flakefighters.egg-info/SOURCES.txt +0 -0
  44. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/src/pytest_flakefighters.egg-info/dependency_links.txt +0 -0
  45. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/src/pytest_flakefighters.egg-info/entry_points.txt +0 -0
  46. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/src/pytest_flakefighters.egg-info/requires.txt +12 -12
  47. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/src/pytest_flakefighters.egg-info/top_level.txt +0 -0
  48. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/tests/__init__.py +0 -0
  49. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/tests/conftest.py +0 -0
  50. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/tests/flakefighters/test_coverage_independence.py +0 -0
  51. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/tests/flakefighters/test_deflaker.py +0 -0
  52. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/tests/flakefighters/test_traceback_matching.py +0 -0
  53. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/tests/resources/deflaker_broken.py +0 -0
  54. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/tests/resources/deflaker_example.py +0 -0
  55. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/tests/resources/flaky_reruns.py +0 -0
  56. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/tests/resources/pass_fail_flaky.py +0 -0
  57. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/tests/resources/test.txt +0 -0
  58. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/tests/resources/triangle.py +0 -0
  59. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/tests/test_database_management.py +0 -0
  60. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/tests/test_end_2_end.py +0 -0
  61. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/tests/test_function_coverage.py +0 -0
  62. {pytest_flakefighters-0.2.0 → pytest_flakefighters-0.2.2}/tests/test_rerun_strategies.py +0 -0
@@ -19,3 +19,7 @@ repos:
19
19
  types: [python]
20
20
  args: ['--max-line-length=120', '--max-positional-arguments=12']
21
21
  files: ^src/|^tests/
22
+ - repo: https://github.com/ComPWA/taplo-pre-commit
23
+ rev: v0.9.3
24
+ hooks:
25
+ - id: taplo-format
@@ -1,43 +1,38 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pytest-flakefighters
3
- Version: 0.2.0
3
+ Version: 0.2.2
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: Repository, https://github.com/test-flare/pytest-flakefighters
7
+ Project-URL: Homepage, https://test-flare.github.io/
9
8
  Project-URL: Issues, https://github.com/test-flare/pytest-flakefighters/issues
10
- Classifier: Programming Language :: Python :: 3.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: unidiff>=0.7.5
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: scipy<=1.15
18
+ Requires-Dist: pytest>=6.2.0
26
19
  Requires-Dist: pyyaml>=6
27
20
  Requires-Dist: scikit-learn>=1.7
28
- Requires-Dist: nltk>=3.9
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
@@ -47,7 +42,7 @@ Dynamic: license-file
47
42
 
48
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)
49
44
  [![PyPI version](https://img.shields.io/pypi/v/pytest-flakefighters.svg)](https://pypi.org/project/pytest-flakefighters)
50
- [![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)
51
46
  ![Test status](https://github.com/test-flare/pytest-flakefighters/actions/workflows/ci-tests.yaml/badge.svg)
52
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)
53
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)
@@ -1,116 +1,117 @@
1
1
  [build-system]
2
- requires = [
3
- "setuptools>=64",
4
- "setuptools_scm[toml]>=8",
5
- "wheel"
6
- ]
7
2
  build-backend = "setuptools.build_meta"
8
-
9
- [tool.setuptools_scm]
10
- write_to = "src/_version.py"
3
+ requires = ["setuptools>=64", "setuptools_scm[toml]>=6.2", "wheel"]
11
4
 
12
5
  [project]
13
- name = "pytest-flakefighters"
14
- authors = [{ name = "TestFLARE Team" },]
15
- description = "Pytest plugin implementing flaky test failure detection and classification."
16
- readme = "README.md"
17
- requires-python = ">=3.10,<3.14"
18
- license-files = ["LICENSE"]
6
+ authors = [{ name = "TestFLARE Team" }]
19
7
  dependencies = [
20
- "pytest>=6.2.0",
21
- "coverage>=7.10.6",
22
- "GitPython>=3.1.45",
23
- "unidiff>=0.7.5",
24
- "sqlalchemy>=2.0.43",
25
- "dotenv>=0.9.9",
26
- "pandas>=2.3",
27
- "scipy<=1.15",
28
- "pyyaml>=6",
29
- "scikit-learn>=1.7",
30
- "nltk>=3.9",
8
+ "GitPython>=3.1.45",
9
+ "coverage>=7.10.6",
10
+ "dotenv>=0.9.9",
11
+ "nltk>=3.9",
12
+ "pandas>=2.3",
13
+ "pytest>=6.2.0",
14
+ "pyyaml>=6",
15
+ "scikit-learn>=1.7",
16
+ "scipy<=1.15",
17
+ "sqlalchemy>=2.0.43",
18
+ "unidiff>=0.7.5",
31
19
  ]
20
+ description = "Pytest plugin implementing flaky test failure detection and classification."
32
21
  dynamic = ["version"]
33
- classifiers = [
34
- "Programming Language :: Python :: 3.10",
35
- "Programming Language :: Python :: 3.11",
36
- "Programming Language :: Python :: 3.12",
37
- "Programming Language :: Python :: 3.13",
38
- "Programming Language :: Python :: 3.14",
39
- ]
40
-
41
- [project.optional-dependencies]
42
- dev = [
43
- "black",
44
- "pytest-cov",
45
- "pylint",
46
- "pre_commit",
47
- "sphinx-autoapi",
48
- "sphinx_rtd_theme",
49
- "tox>=4.31.0",
50
- "myst_parser",
51
- "nbsphinx",
52
- "pytest-html",
53
- "pytest-json-report>=1.5",
54
- ]
55
- pg = [
56
- "psycopg2>2.9",
57
- ]
58
-
59
- [project.urls]
60
- Homepage = "https://test-flare.github.io/"
61
- Documentation = "https://pytest-flakefighters.readthedocs.io"
62
- Repository = "https://github.com/test-flare/pytest-flakefighters"
63
- Issues = "https://github.com/test-flare/pytest-flakefighters/issues"
22
+ license-files = ["LICENSE"]
23
+ name = "pytest-flakefighters"
24
+ readme = "README.md"
25
+ requires-python = ">=3.10,<3.14"
64
26
 
65
27
  [project.entry-points.pytest11]
66
28
  flakefighters = "pytest_flakefighters.main"
67
29
 
68
30
  [project.entry-points."pytest_flakefighters"]
31
+ CosineSimilarity = "pytest_flakefighters.flakefighters.traceback_matching:CosineSimilarity"
69
32
  CoverageIndependence = 'pytest_flakefighters.flakefighters.coverage_independence:CoverageIndependence'
70
33
  DeFlaker = "pytest_flakefighters.flakefighters.deflaker:DeFlaker"
71
34
  TracebackMatching = "pytest_flakefighters.flakefighters.traceback_matching:TracebackMatching"
72
- CosineSimilarity = "pytest_flakefighters.flakefighters.traceback_matching:CosineSimilarity"
73
35
 
74
- [tool.pylint]
75
- ignore-paths="tests/resources"
76
- disable=[
77
- "raw-checker-failed",
78
- "bad-inline-option",
79
- "locally-disabled",
80
- "file-ignored",
81
- "suppressed-message",
82
- "useless-suppression",
83
- "deprecated-pragma",
84
- "use-symbolic-message-instead",
85
- "logging-fstring-interpolation",
86
- "import-error",
87
- "unspecified-encoding",
88
- "unexpected-keyword-arg"
36
+ [project.optional-dependencies]
37
+ dev = [
38
+ "black",
39
+ "myst_parser",
40
+ "nbsphinx",
41
+ "pre_commit",
42
+ "pylint",
43
+ "pytest-cov",
44
+ "pytest-html",
45
+ "pytest-json-report>=1.5",
46
+ "sphinx-autoapi",
47
+ "sphinx_rtd_theme",
48
+ "tox>=4.31.0",
89
49
  ]
90
- max-line-length=120
91
- variable-rgx="^[a-z][a-z0-9]*((_[a-z0-9]+)*)?$"
50
+ pg = ["psycopg2>2.9"]
51
+
52
+ [project.urls]
53
+ Documentation = "https://pytest-flakefighters.readthedocs.io"
54
+ Homepage = "https://test-flare.github.io/"
55
+ Issues = "https://github.com/test-flare/pytest-flakefighters/issues"
56
+ Repository = "https://github.com/test-flare/pytest-flakefighters"
57
+
58
+ [tool.taplo]
59
+ reorder_keys = true
60
+ reorder_arrays = true
92
61
 
93
62
  [tool.black]
94
63
  # https://github.com/psf/black
95
64
  line-length = 120
96
65
  target-version = ["py310"]
97
66
 
67
+ [tool.isort]
68
+ profile = "black"
69
+
70
+ [tool.pylint]
71
+ disable = [
72
+ "bad-inline-option",
73
+ "deprecated-pragma",
74
+ "file-ignored",
75
+ "import-error",
76
+ "locally-disabled",
77
+ "logging-fstring-interpolation",
78
+ "raw-checker-failed",
79
+ "suppressed-message",
80
+ "unexpected-keyword-arg",
81
+ "unspecified-encoding",
82
+ "use-symbolic-message-instead",
83
+ "useless-suppression",
84
+ ]
85
+ ignore-paths = "tests/resources"
86
+ max-line-length = 120
87
+ variable-rgx = "^[a-z][a-z0-9]*((_[a-z0-9]+)*)?$"
88
+
98
89
  [tool.pytest.ini_options]
99
90
  minversion = "6.0"
100
91
  testpaths = ["tests"]
101
- [tool.isort]
102
- profile = "black"
92
+
93
+ [tool.setuptools_scm]
94
+ write_to = "src/_version.py"
103
95
 
104
96
  [tool.tox]
97
+ env_list = ["3.10", "3.11", "3.12", "3.13"]
105
98
  requires = ["tox>=4.19"]
106
- env_list = ["3.10","3.11","3.12","3.13"]
107
- skip_missing_interpreters = false # fail if devs don’t have all required Python versions
99
+ skip_missing_interpreters = false # fail if devs don’t have all required Python versions
108
100
 
109
101
  # Base configuration for all test environments
110
102
  [tool.tox.env_run_base]
111
- usedevelop = true
103
+ allowlist_externals = ["pytest"]
104
+ commands = [
105
+ [
106
+ "--cov-report=html",
107
+ "--cov=src/pytest_flakefighters",
108
+ "-p",
109
+ "no:flakefighters",
110
+ "pytest",
111
+ "{posargs:tests}",
112
+ ],
113
+ ]
114
+ deps = ["pytest", "pytest-cov", "pytest-html", "pytest-json-report"]
112
115
  description = "Run pytest under {base_python}"
113
- allowlist_externals=["pytest"]
114
- extras = ["dev","test"]
115
- deps = ["pytest","pytest-cov","pytest-html","pytest-json-report"]
116
- commands = [["pytest","-p","no:flakefighters","--cov=src/pytest_flakefighters","--cov-report=html","{posargs:tests}"]]
116
+ extras = ["dev", "test"]
117
+ usedevelop = true
@@ -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.0'
32
- __version_tuple__ = version_tuple = (0, 2, 0)
31
+ __version__ = version = '0.2.2'
32
+ __version_tuple__ = version_tuple = (0, 2, 2)
33
33
 
34
- __commit_id__ = commit_id = 'g7f25639be'
34
+ __commit_id__ = commit_id = 'g61c8caa8e'
@@ -1,43 +1,38 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pytest-flakefighters
3
- Version: 0.2.0
3
+ Version: 0.2.2
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: Repository, https://github.com/test-flare/pytest-flakefighters
7
+ Project-URL: Homepage, https://test-flare.github.io/
9
8
  Project-URL: Issues, https://github.com/test-flare/pytest-flakefighters/issues
10
- Classifier: Programming Language :: Python :: 3.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: unidiff>=0.7.5
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: scipy<=1.15
18
+ Requires-Dist: pytest>=6.2.0
26
19
  Requires-Dist: pyyaml>=6
27
20
  Requires-Dist: scikit-learn>=1.7
28
- Requires-Dist: nltk>=3.9
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
@@ -47,7 +42,7 @@ Dynamic: license-file
47
42
 
48
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)
49
44
  [![PyPI version](https://img.shields.io/pypi/v/pytest-flakefighters.svg)](https://pypi.org/project/pytest-flakefighters)
50
- [![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)
51
46
  ![Test status](https://github.com/test-flare/pytest-flakefighters/actions/workflows/ci-tests.yaml/badge.svg)
52
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)
53
48
  [![Documentation Status](https://readthedocs.org/projects/causal-testing-framework/badge/?version=latest)](https://causal-testing-framework.readthedocs.io/en/latest/?badge=latest)
@@ -1,27 +1,27 @@
1
- pytest>=6.2.0
2
- coverage>=7.10.6
3
1
  GitPython>=3.1.45
4
- unidiff>=0.7.5
5
- sqlalchemy>=2.0.43
2
+ coverage>=7.10.6
6
3
  dotenv>=0.9.9
4
+ nltk>=3.9
7
5
  pandas>=2.3
8
- scipy<=1.15
6
+ pytest>=6.2.0
9
7
  pyyaml>=6
10
8
  scikit-learn>=1.7
11
- nltk>=3.9
9
+ scipy<=1.15
10
+ sqlalchemy>=2.0.43
11
+ unidiff>=0.7.5
12
12
 
13
13
  [dev]
14
14
  black
15
- pytest-cov
16
- pylint
17
- pre_commit
18
- sphinx-autoapi
19
- sphinx_rtd_theme
20
- tox>=4.31.0
21
15
  myst_parser
22
16
  nbsphinx
17
+ pre_commit
18
+ pylint
19
+ pytest-cov
23
20
  pytest-html
24
21
  pytest-json-report>=1.5
22
+ sphinx-autoapi
23
+ sphinx_rtd_theme
24
+ tox>=4.31.0
25
25
 
26
26
  [pg]
27
27
  psycopg2>2.9