This repository has been archived by the owner on Sep 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
54 lines (51 loc) · 1.58 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[metadata]
name = pytest-unflakable
version = 0.2.0
author = Unflakable
author_email = [email protected]
maintainer = Unflakable
maintainer_email = [email protected]
license = MIT
license_files =
LICENSE
url = https://unflakable.com
project_urls =
Repository = https://github.com/unflakable/unflakable-python
Documentation = https://docs.unflakable.com/plugins/pytest
description = Unflakable plugin for PyTest
long_description = file: src/pytest_unflakable/README.md
long_description_content_type = text/markdown
classifiers =
Development Status :: 4 - Beta
Framework :: Pytest
Intended Audience :: Developers
Topic :: Software Development :: Testing
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3 :: Only
Operating System :: OS Independent
License :: OSI Approved :: MIT License
[options]
package_dir=
=src
packages =
pytest_unflakable
python_requires = >=3.8
# NB: PyTest 8.2.2 broke support for unittest retries, which should be fixed in 8.2.3 (see
# https://github.com/pytest-dev/pytest/issues/12424).
install_requires =
pytest>=6.2.0,!=8.2.2
requests>=2.19.0
[options.extras_require]
dev =
# freezegun 1.2.2 fixed pytest timing interference.
freezegun>=1.2.2
requests-mock[fixture]==1.11.0
[options.entry_points]
pytest11 =
unflakable = pytest_unflakable