Skip to content

Commit b4aa1d6

Browse files
TomAugspurgerjreback
authored andcommitted
PKG: Add test extra (#27039)
1 parent 6119d02 commit b4aa1d6

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

setup.cfg

+1
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ split_penalty_after_opening_bracket = 1000000
5757
split_penalty_logical_operator = 30
5858

5959
[tool:pytest]
60+
# sync minversion with setup.cfg & install.rst
6061
minversion = 4.0.2
6162
testpaths = pandas
6263
markers =

setup.py

+8
Original file line numberDiff line numberDiff line change
@@ -784,4 +784,12 @@ def srcpath(name=None, suffix='.pyx', subdir='src'):
784784
classifiers=CLASSIFIERS,
785785
platforms='any',
786786
python_requires='>=3.5',
787+
extras_require={
788+
'test': [
789+
# sync with setup.cfg minversion & install.rst
790+
'pytest>=4.0.2',
791+
'pytest-xdist',
792+
'hypothesis>=3.58',
793+
]
794+
},
787795
**setuptools_kwargs)

0 commit comments

Comments
 (0)