Skip to content

Commit d165a3f

Browse files
committed
more verbose built test
1 parent 3ca5ba3 commit d165a3f

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

ci/install_travis.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ if [ "$BUILD_TEST" ]; then
123123

124124
# build & install testing
125125
echo ["Starting installation test."]
126+
rm -rf dist
126127
python setup.py clean
127128
python setup.py build_ext --inplace
128129
python setup.py sdist --formats=gztar

ci/script_multi.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,12 @@ export PYTHONHASHSEED=$(python -c 'import random; print(random.randint(1, 429496
1919
echo PYTHONHASHSEED=$PYTHONHASHSEED
2020

2121
if [ "$BUILD_TEST" ]; then
22+
echo "build-test"
2223
cd /tmp
23-
python -c "import pandas; pandas.test(['-n 2'])"
24+
pwd
25+
conda list pandas
26+
echo "running"
27+
python -c "import pandas; pandas.test(['-n 2', '--skip-slow', '--skip-network'])"
2428
elif [ "$DOC" ]; then
2529
echo "We are not running pytest as this is a doc-build"
2630
elif [ "$COVERAGE" ]; then

pandas/util/_tester.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def test(extra_args=None):
1515
if not isinstance(extra_args, list):
1616
extra_args = [extra_args]
1717
cmd = extra_args
18-
cmd += ['--pyargs pandas']
18+
cmd += ['--pyargs', 'pandas']
1919
print("running: pytest {}".format(' '.join(cmd)))
2020
sys.exit(pytest.main(cmd))
2121

0 commit comments

Comments
 (0)