Skip to content

Commit 05b2400

Browse files
Do not import pandas folder from the repo
1 parent 748432e commit 05b2400

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/emscripten.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,5 +70,7 @@ jobs:
7070
run: |
7171
source .venv-pyodide/bin/activate
7272
export PANDAS_CI=1
73-
pip install pytest
74-
python -m pytest -m 'not slow and not network and not clipboard and not single_cpu' pandas
73+
pip install "pytest<8.1.0"
74+
# do not import pandas from the checked out repo
75+
cd ..
76+
python -c 'import pandas as pd; pd.test(extra_args=["-m not clipboard and not single_cpu and not slow and not network and not db"])'

0 commit comments

Comments
 (0)