Skip to content

Commit a02c6ce

Browse files
committed
listing pytest last in th dependency list to solve pytest-dev/pytest#1652
1 parent 987dbc5 commit a02c6ce

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

setup.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,11 @@
2020
'tblib', # this might not always install six (latest version does not)
2121
'six',
2222
'pyzmq',
23-
'pytest', # since tests are embedded in package
24-
'pytest-timeout'
23+
# since tests are embedded in package
24+
'pytest-timeout',
25+
# Careful : upon install plugins can be resolved instead of core pytest package
26+
# => pytest should be listed last here...
27+
'pytest',
2528
],
2629
setup_requires=['pytest-runner'],
2730
tests_require=['pytest'],

0 commit comments

Comments
 (0)