From 9fd6a79d021a592200fa1352f81488664551167a Mon Sep 17 00:00:00 2001 From: Simon Hawkins Date: Thu, 23 Jun 2022 02:21:09 +0100 Subject: [PATCH] Revert "Backport PR #47318 on branch 1.4.x (CI: Pin PYTEST_WORKERS=1 for Windows builds due to memory errors) (#47445)" This reverts commit 2d370af40a7407d019be300c84ea8342e5e8a023. --- .github/workflows/macos-windows.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/macos-windows.yml b/.github/workflows/macos-windows.yml index 923ac8f2e0fd6..560a421ec74ec 100644 --- a/.github/workflows/macos-windows.yml +++ b/.github/workflows/macos-windows.yml @@ -15,6 +15,7 @@ on: env: PANDAS_CI: 1 PYTEST_TARGET: pandas + PYTEST_WORKERS: auto PATTERN: "not slow and not db and not network and not single_cpu" @@ -35,9 +36,6 @@ jobs: # https://github.community/t/concurrecy-not-work-for-push/183068/7 group: ${{ github.event_name == 'push' && github.run_number || github.ref }}-${{ matrix.env_file }}-${{ matrix.os }} cancel-in-progress: true - env: - # GH 47443: PYTEST_WORKERS > 1 crashes Windows builds with memory related errors - PYTEST_WORKERS: ${{ matrix.os == 'macos-latest' && 'auto' || '1' }} steps: - name: Checkout