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/TST: Disable tests/window/moments for Azure timeouts #45500

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion ci/deps/azure-windows-310.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dependencies:
# tools
- cython>=0.29.24
- pytest>=6.0
- pytest-xdist>=1.31
- pytest-xdist=2.4.0
- hypothesis>=5.5.3
- pytest-azurepipelines

Expand Down
2 changes: 1 addition & 1 deletion ci/deps/azure-windows-38.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dependencies:
# tools
- cython>=0.29.24
- pytest>=6.0
- pytest-xdist>=1.31
- pytest-xdist=2.4.0
- hypothesis>=5.5.3
- pytest-azurepipelines

Expand Down
2 changes: 1 addition & 1 deletion ci/deps/azure-windows-39.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dependencies:
# tools
- cython>=0.29.24
- pytest>=6.0
- pytest-xdist>=1.31
- pytest-xdist=2.4.0
- hypothesis>=5.5.3
- pytest-azurepipelines

Expand Down
4 changes: 2 additions & 2 deletions ci/run_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ fi

PYTEST_CMD="${XVFB}pytest -m \"$PATTERN\" -n $PYTEST_WORKERS --dist=loadfile $TEST_ARGS $COVERAGE $PYTEST_TARGET"

if [[ $(uname) != "Linux" && $(uname) != "Darwin" ]]; then
PYTEST_CMD="$PYTEST_CMD --ignore=pandas/tests/plotting/"
if [[ $(uname) != "Linux" ]]; then
PYTEST_CMD="$PYTEST_CMD --ignore=pandas/tests/window/moments --ignore=pandas/tests/plotting/"
fi

echo $PYTEST_CMD
Expand Down
1 change: 0 additions & 1 deletion pandas/tests/window/moments/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ def is_constant(x):
for obj in itertools.chain(create_series(), create_dataframes())
if is_constant(obj)
),
scope="module",
)
def consistent_data(request):
return request.param
Expand Down