File tree 5 files changed +52
-43
lines changed
5 files changed +52
-43
lines changed Original file line number Diff line number Diff line change
1
+ [build-system ]
2
+ requires = [
3
+ " setuptools" ,
4
+ " setuptools-scm[toml]>=6.2.3" ,
5
+ ]
6
+ build-backend = " setuptools.build_meta"
7
+
8
+ [tool .setuptools_scm ]
Original file line number Diff line number Diff line change
1
+ [pytest]
2
+ addopts = -ra
3
+ testpaths = tests
Original file line number Diff line number Diff line change
1
+ [metadata]
2
+ name = pytest-subtests
3
+ description = unittest subTest() support and subtests fixture
4
+ long_description = file: README.rst
5
+ long_description_content_type = text/x-rst
6
+ url = https://github.com/pytest-dev/pytest-subtests
7
+ author = Bruno Oliveira
8
+ license = MIT
9
+ license_file = LICENSE
10
+ classifiers =
11
+ Development Status :: 4 - Beta
12
+ Framework :: Pytest
13
+ Intended Audience :: Developers
14
+ Topic :: Software Development :: Testing
15
+ Programming Language :: Python
16
+ Programming Language :: Python :: 3
17
+ Programming Language :: Python :: 3.7
18
+ Programming Language :: Python :: 3.8
19
+ Programming Language :: Python :: 3.9
20
+ Programming Language :: Python :: 3.10
21
+ Programming Language :: Python :: 3.11
22
+ Programming Language :: Python :: Implementation :: CPython
23
+ Operating System :: OS Independent
24
+ License :: OSI Approved :: MIT License
25
+ keywords = test, unittest, pytest
26
+
27
+ [options]
28
+ py_modules = pytest_subtests
29
+ install_requires =
30
+ pytest>=7.0
31
+ attrs>=19.2.0
32
+ python_requires = >=3.7
33
+ package_dir =
34
+ =src
35
+ setup_requires =
36
+ setuptools
37
+ setuptools-scm>=6.0
38
+
39
+ [options.entry_points]
40
+ pytest11 =
41
+ subtests = pytest_subtests
Load Diff This file was deleted.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments