We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 748432e commit 05b2400Copy full SHA for 05b2400
.github/workflows/emscripten.yml
@@ -70,5 +70,7 @@ jobs:
70
run: |
71
source .venv-pyodide/bin/activate
72
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
+ pip install "pytest<8.1.0"
+ # 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