Skip to content

Commit 14923dd

Browse files
committed
exclude slow test from test matrix
1 parent d9deded commit 14923dd

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/ci.yaml

+6-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,12 @@ jobs:
1919
matrix:
2020
python_version: ["3.8", "3.10"]
2121
install_type: [standard, dev, minimal]
22-
22+
exclude:
23+
# It looks like pip installing our minimal pandas version is very slow under Python 3.10,
24+
# most likely, because it involves explicit compilation. Excluding it for now because
25+
# testing old library versions against a modern Python is a rather rare use case.
26+
- python_version: "3.10"
27+
install_type: minimal
2328
env:
2429
INSTALL_TYPE: ${{ matrix.install_type }}
2530

0 commit comments

Comments
 (0)