Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: Azure timeout debug #45547

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/code-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ env:

jobs:
pre_commit:
if: false
name: pre-commit
runs-on: ubuntu-latest
concurrency:
Expand All @@ -35,6 +36,7 @@ jobs:
uses: pre-commit/action@v2.0.3

typing_and_docstring_validation:
if: false
name: Docstring and typing validation
runs-on: ubuntu-latest
defaults:
Expand Down Expand Up @@ -101,6 +103,7 @@ jobs:
if: ${{ steps.build.outcome == 'success' }}

asv-benchmarks:
if: false
name: ASV Benchmarks
runs-on: ubuntu-latest
defaults:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/datamanger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ env:

jobs:
data_manager:
if: false
name: Test experimental data manager
runs-on: ubuntu-latest
services:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/docbuild-and-upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ env:

jobs:
web_and_docs:
if: false
name: Doc Build and Upload
runs-on: ubuntu-latest

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/posix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ env:

jobs:
pytest:
if: false
runs-on: ubuntu-latest
defaults:
run:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/sdist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ on:

jobs:
build:
if: false
runs-on: ubuntu-latest
timeout-minutes: 60
defaults:
Expand Down
7 changes: 4 additions & 3 deletions ci/azure/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ parameters:

jobs:
- job: ${{ parameters.name }}
timeoutInMinutes: 90
pool:
vmImage: ${{ parameters.vmImage }}
strategy:
Expand All @@ -19,7 +20,7 @@ jobs:
ENV_FILE: ci/deps/azure-windows-38.yaml
CONDA_PY: "38"
PATTERN: "not slow"
PYTEST_WORKERS: 2 # GH-42236
PYTEST_WORKERS: 1 # GH-42236
PYTEST_TARGET: "pandas/tests/[i-z]*"

py39_1:
Expand All @@ -33,7 +34,7 @@ jobs:
ENV_FILE: ci/deps/azure-windows-39.yaml
CONDA_PY: "39"
PATTERN: "not slow and not high_memory"
PYTEST_WORKERS: 2 # GH-42236
PYTEST_WORKERS: 1 # GH-42236
PYTEST_TARGET: "pandas/tests/[i-z]*"

py310_1:
Expand All @@ -47,7 +48,7 @@ jobs:
ENV_FILE: ci/deps/azure-windows-310.yaml
CONDA_PY: "310"
PATTERN: "not slow and not high_memory"
PYTEST_WORKERS: 2 # GH-42236
PYTEST_WORKERS: 1 # GH-42236
PYTEST_TARGET: "pandas/tests/[i-z]*"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

could also do a -v for these?


steps:
Expand Down