Skip to content

Commit 113ca32

Browse files
feffesysradium
authored andcommitted
Exclude tests package for setuptools. Remove test_suite from setuptools configuration. Better to just run the tests using tox and pytest than through setuptools
1 parent 214bef1 commit 113ca32

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ def read(fname):
1313
author_email='brian@kyr.us',
1414
url='https://github.com/kyrus/python-junit-xml',
1515
license='MIT',
16-
packages=find_packages(),
17-
test_suite='test_junit_xml',
16+
packages=find_packages(exclude=['tests']),
1817
description='Creates JUnit XML test result documents that can be read by '
1918
'tools such as Jenkins',
2019
long_description=read('README.rst'),

0 commit comments

Comments
 (0)