From 7aade775f0599d4b233e64e50a15bcd09489c5b3 Mon Sep 17 00:00:00 2001 From: Nagesh Kumar C Date: Sat, 31 Oct 2020 20:27:16 +0530 Subject: [PATCH] #37535 pandas-CI: revert disable of windows window tests --- ci/run_tests.sh | 6 ------ 1 file changed, 6 deletions(-) diff --git a/ci/run_tests.sh b/ci/run_tests.sh index 9b553fbc81a03..fda2005ce7843 100755 --- a/ci/run_tests.sh +++ b/ci/run_tests.sh @@ -22,12 +22,6 @@ fi PYTEST_CMD="${XVFB}pytest -m \"$PATTERN\" -n $PYTEST_WORKERS --dist=loadfile -s --strict --durations=30 --junitxml=test-data.xml $TEST_ARGS $COVERAGE pandas" -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/" -fi - echo $PYTEST_CMD sh -c "$PYTEST_CMD"