Skip to content

Commit faeca4a

Browse files
committed
python setup.py test now works by default
1 parent 5f09deb commit faeca4a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
]
2525

2626
INSTALL_REQUIRES = ['numpy >= 1.12', 'pandas >= 0.19.2']
27+
SETUP_REQUIRES = ['pytest-runner >= 4.2']
2728
TESTS_REQUIRE = ['pytest >= 2.7.1']
2829
if sys.version_info[0] < 3:
2930
TESTS_REQUIRE.append('mock')
@@ -65,6 +66,7 @@
6566
description=DESCRIPTION,
6667
long_description=LONG_DESCRIPTION,
6768
install_requires=INSTALL_REQUIRES,
69+
setup_requires=SETUP_REQUIRES,
6870
tests_require=TESTS_REQUIRE,
6971
url=URL,
7072
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*',

0 commit comments

Comments
 (0)