Skip to content

Commit 9d36104

Browse files
committed
moar ci
1 parent d165a3f commit 9d36104

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

ci/script_multi.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ if [ "$BUILD_TEST" ]; then
2424
pwd
2525
conda list pandas
2626
echo "running"
27-
python -c "import pandas; pandas.test(['-n 2', '--skip-slow', '--skip-network'])"
27+
python -c "import pandas; pandas.test(['-n 2'])"
2828
elif [ "$DOC" ]; then
2929
echo "We are not running pytest as this is a doc-build"
3030
elif [ "$COVERAGE" ]; then

pandas/util/_tester.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
"""
22
Entrypoint for testing from the top-level namespace
33
"""
4+
import os
45
import sys
56

7+
PKG = os.path.dirname(os.path.dirname(__file__))
8+
9+
610
try:
711
import pytest
812
except ImportError:
@@ -15,7 +19,7 @@ def test(extra_args=None):
1519
if not isinstance(extra_args, list):
1620
extra_args = [extra_args]
1721
cmd = extra_args
18-
cmd += ['--pyargs', 'pandas']
22+
cmd += [PKG]
1923
print("running: pytest {}".format(' '.join(cmd)))
2024
sys.exit(pytest.main(cmd))
2125

0 commit comments

Comments
 (0)