Skip to content

Commit a70d0b5

Browse files
Fix Pytest4.x compatibility error
According to pytest docs: ``` [pytest] section in setup.cfg files Removed in version 4.0. [pytest] sections in setup.cfg files should now be named [tool:pytest] to avoid conflicts with other distutils commands. ``` Signed-off-by: Stanislav Levin <[email protected]>
1 parent e12a6d4 commit a70d0b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[bdist_wheel]
22
universal=1
33

4-
[pytest]
4+
[tool:pytest]
55
testpaths = tests
66
norecursedirs = .git tmp* .eggs bin build include lib share src

0 commit comments

Comments
 (0)