Skip to content

Commit

Permalink
python setup.py test now works by default (#2573)
Browse files Browse the repository at this point in the history
  • Loading branch information
horta authored and shoyer committed Nov 25, 2018
1 parent 9d572a5 commit ecbf91f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
]

INSTALL_REQUIRES = ['numpy >= 1.12', 'pandas >= 0.19.2']
SETUP_REQUIRES = ['pytest-runner >= 4.2']
TESTS_REQUIRE = ['pytest >= 2.7.1']
if sys.version_info[0] < 3:
TESTS_REQUIRE.append('mock')
Expand Down Expand Up @@ -66,6 +67,7 @@
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
install_requires=INSTALL_REQUIRES,
setup_requires=SETUP_REQUIRES,
tests_require=TESTS_REQUIRE,
url=URL,
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*',
Expand Down

0 comments on commit ecbf91f

Please sign in to comment.