File tree 2 files changed +6
-2
lines changed 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ if [ "$BUILD_TEST" ]; then
24
24
pwd
25
25
conda list pandas
26
26
echo " running"
27
- python -c " import pandas; pandas.test(['-n 2', '--skip-slow', '--skip-network' ])"
27
+ python -c " import pandas; pandas.test(['-n 2'])"
28
28
elif [ " $DOC " ]; then
29
29
echo " We are not running pytest as this is a doc-build"
30
30
elif [ " $COVERAGE " ]; then
Original file line number Diff line number Diff line change 1
1
"""
2
2
Entrypoint for testing from the top-level namespace
3
3
"""
4
+ import os
4
5
import sys
5
6
7
+ PKG = os .path .dirname (os .path .dirname (__file__ ))
8
+
9
+
6
10
try :
7
11
import pytest
8
12
except ImportError :
@@ -15,7 +19,7 @@ def test(extra_args=None):
15
19
if not isinstance (extra_args , list ):
16
20
extra_args = [extra_args ]
17
21
cmd = extra_args
18
- cmd += ['--pyargs' , 'pandas' ]
22
+ cmd += [PKG ]
19
23
print ("running: pytest {}" .format (' ' .join (cmd )))
20
24
sys .exit (pytest .main (cmd ))
21
25
You can’t perform that action at this time.
0 commit comments