File tree Expand file tree Collapse file tree 4 files changed +7
-5
lines changed Expand file tree Collapse file tree 4 files changed +7
-5
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
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 @@ -73,6 +73,8 @@ coverage_html_report
73
73
__pycache__
74
74
# pytest-monkeytype
75
75
monkeytype.sqlite3
76
+ # meson editable install folder
77
+ .mesonpy
76
78
77
79
78
80
# OS generated files #
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ if [[ $(uname) == "Linux" && -z $DISPLAY ]]; then
24
24
XVFB=" xvfb-run "
25
25
fi
26
26
27
- PYTEST_CMD=" ${XVFB} pytest -r fEs -n $PYTEST_WORKERS --dist=loadfile $TEST_ARGS $COVERAGE $PYTEST_TARGET "
27
+ PYTEST_CMD=" ${XVFB} pytest -r fEs -n $PYTEST_WORKERS --dist=loadfile --import-mode=importlib $TEST_ARGS $COVERAGE $PYTEST_TARGET "
28
28
29
29
if [[ " $PATTERN " ]]; then
30
30
PYTEST_CMD=" $PYTEST_CMD -m \" $PATTERN \" "
Original file line number Diff line number Diff line change @@ -70,9 +70,9 @@ dependencies:
70
70
# benchmarks
71
71
- asv>=0.5.1
72
72
73
- # The compiler packages are meta-packages and install the correct compiler (activation) packages on the respective platforms.
74
- - c-compiler
75
- - cxx-compiler
73
+ # # The compiler packages are meta-packages and install the correct compiler (activation) packages on the respective platforms.
74
+ # - c-compiler
75
+ # - cxx-compiler
76
76
77
77
# code checks
78
78
- black=22.10.0
You can’t perform that action at this time.
0 commit comments