From f3a8d598b5a0551f02038b5c060ed95b7b07db2a Mon Sep 17 00:00:00 2001 From: Matt Roeschke Date: Tue, 24 Nov 2020 22:02:22 -0800 Subject: [PATCH] CI: Renable window tests on Windows --- ci/run_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/run_tests.sh b/ci/run_tests.sh index 78d24c814840a..924ece4a60b26 100755 --- a/ci/run_tests.sh +++ b/ci/run_tests.sh @@ -25,7 +25,7 @@ PYTEST_CMD="${XVFB}pytest -m \"$PATTERN\" -n $PYTEST_WORKERS --dist=loadfile -s if [[ $(uname) != "Linux" && $(uname) != "Darwin" ]]; then # GH#37455 windows py38 build appears to be running out of memory # skip collection of window tests - PYTEST_CMD="$PYTEST_CMD --ignore=pandas/tests/window/ --ignore=pandas/tests/plotting/" + PYTEST_CMD="$PYTEST_CMD --ignore=pandas/tests/plotting/" fi echo $PYTEST_CMD