File tree 2 files changed +2
-6
lines changed
2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change 1
- #! /bin/bash
1
+ #! /bin/bash -x
2
2
3
3
echo " [script multi]"
4
4
20
20
if [ " $BUILD_TEST " ]; then
21
21
echo " We are not running pytest as this is simply a build test."
22
22
elif [ " $COVERAGE " ]; then
23
- echo pytest -s -n 2 -m " not single" --cov=pandas --cov-append --cov-report xml:/tmp/cov.xml --junitxml=/tmp/multiple.xml $TEST_ARGS pandas
24
23
pytest -s -n 2 -m " not single" --cov=pandas --cov-append --cov-report xml:/tmp/cov.xml --junitxml=/tmp/multiple.xml $TEST_ARGS pandas
25
24
else
26
- echo pytest -n 2 -m " not single" --junitxml=/tmp/multiple.xml $TEST_ARGS pandas
27
25
pytest -n 2 -m " not single" --junitxml=/tmp/multiple.xml $TEST_ARGS pandas # TODO: doctest
28
26
fi
29
27
Original file line number Diff line number Diff line change 1
- #! /bin/bash
1
+ #! /bin/bash -x
2
2
3
3
echo " [script_single]"
4
4
20
20
if [ " $BUILD_TEST " ]; then
21
21
echo " We are not running pytest as this is simply a build test."
22
22
elif [ " $COVERAGE " ]; then
23
- echo pytest -s -m " single" --cov=pandas --cov-report xml:/tmp/cov.xml --junitxml=/tmp/single.xml $TEST_ARGS pandas
24
23
pytest -s -m " single" --cov=pandas --cov-report xml:/tmp/cov.xml --junitxml=/tmp/single.xml $TEST_ARGS pandas
25
24
else
26
- echo pytest -m " single" --junitxml=/tmp/single.xml $TEST_ARGS pandas
27
25
pytest -m " single" --junitxml=/tmp/single.xml $TEST_ARGS pandas # TODO: doctest
28
26
fi
29
27
You can’t perform that action at this time.
0 commit comments