File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 45
45
export PANDAS_CI=1 && \
46
46
python -m pip install --no-build-isolation -ve . && \
47
47
python -m pip list && \
48
- pytest -m 'not slow and not network and not clipboard and not single_cpu' pandas --junitxml=test-data.xml --import-mode=" importlib"
48
+ pytest -m 'not slow and not network and not clipboard and not single_cpu' pandas --junitxml=test-data.xml --import-mode=importlib"
49
49
50
50
- name : Publish test results for Python 3.8-32 bit full Linux
51
51
uses : actions/upload-artifact@v3
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ if [[ "not network" == *"$PATTERN"* ]]; then
13
13
fi
14
14
15
15
if [[ " $COVERAGE " == " true" ]]; then
16
- COVERAGE=" -s --cov=pandas --cov-report=xml --cov-append"
16
+ COVERAGE=" -s --cov=pandas --cov-report=xml --cov-append --cov-config=setup.cfg "
17
17
else
18
18
COVERAGE=" " # We need to reset this for COVERAGE="false" case
19
19
fi
@@ -43,7 +43,7 @@ sh -c "$PYTEST_CMD"
43
43
if [[ " $PANDAS_DATA_MANAGER " != " array" && " $PYTEST_TARGET " == " pandas" ]]; then
44
44
# The ArrayManager tests should have already been run by PYTEST_CMD if PANDAS_DATA_MANAGER was already set to array
45
45
# If we're targeting specific files, e.g. test_downstream.py, don't run.
46
- PYTEST_AM_CMD=" PANDAS_DATA_MANAGER=array pytest -n $PYTEST_WORKERS --dist=loadfile $TEST_ARGS $COVERAGE pandas"
46
+ PYTEST_AM_CMD=" PANDAS_DATA_MANAGER=array pytest -n $PYTEST_WORKERS --dist=loadfile --import-mode=importlib $TEST_ARGS $COVERAGE pandas"
47
47
48
48
if [[ " $PATTERN " ]]; then
49
49
PYTEST_AM_CMD=" $PYTEST_AM_CMD -m \" $PATTERN and arraymanager\" "
You can’t perform that action at this time.
0 commit comments