Skip to content

Commit 6ed4572

Browse files
committed
Try again
1 parent f36e014 commit 6ed4572

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

.github/workflows/32-bit-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
export PANDAS_CI=1 && \
4646
python -m pip install --no-build-isolation -ve . && \
4747
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"
4949
5050
- name: Publish test results for Python 3.8-32 bit full Linux
5151
uses: actions/upload-artifact@v3

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,8 @@ coverage_html_report
7373
__pycache__
7474
# pytest-monkeytype
7575
monkeytype.sqlite3
76+
# meson editable install folder
77+
.mesonpy
7678

7779

7880
# OS generated files #

ci/run_tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ if [[ $(uname) == "Linux" && -z $DISPLAY ]]; then
2424
XVFB="xvfb-run "
2525
fi
2626

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"
2828

2929
if [[ "$PATTERN" ]]; then
3030
PYTEST_CMD="$PYTEST_CMD -m \"$PATTERN\""

environment.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ dependencies:
7070
# benchmarks
7171
- asv>=0.5.1
7272

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
7676

7777
# code checks
7878
- black=22.10.0

0 commit comments

Comments
 (0)