Skip to content

CI: troubleshoot windows builds #37746

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

Merged
merged 27 commits into from
Nov 18, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
a184cff
troubleshoot windows builds
jbrockmendel Nov 10, 2020
df3f897
Fixup run the tests, not edit the command
jbrockmendel Nov 10, 2020
25a7edb
Merge branch 'master' of https://github.com/pandas-dev/pandas into ci…
jbrockmendel Nov 11, 2020
1f3b9f6
xfail on windows
jbrockmendel Nov 11, 2020
2c64fa2
not strict
jbrockmendel Nov 12, 2020
dd60ce7
xfail harder
jbrockmendel Nov 12, 2020
8000b44
Merge branch 'master' of https://github.com/pandas-dev/pandas into ci…
jbrockmendel Nov 12, 2020
58a32b9
re-xfail
jbrockmendel Nov 12, 2020
8d4bc20
dummy commit to force CI
jbrockmendel Nov 13, 2020
e3f96b9
Merge branch 'master' of https://github.com/pandas-dev/pandas into ci…
jbrockmendel Nov 13, 2020
675e8f5
now the linux-locale-slow build is complaining
jbrockmendel Nov 13, 2020
4818889
Merge branch 'master' of https://github.com/pandas-dev/pandas into ci…
jbrockmendel Nov 14, 2020
0c027ab
troubleshoot
jbrockmendel Nov 14, 2020
5a791cc
Merge branch 'master' of https://github.com/pandas-dev/pandas into ci…
jbrockmendel Nov 14, 2020
0c3342a
restore xdist
jbrockmendel Nov 14, 2020
1cb0edd
Merge branch 'master' of https://github.com/pandas-dev/pandas into ci…
jbrockmendel Nov 14, 2020
c26c6f1
Merge branch 'master' of https://github.com/pandas-dev/pandas into ci…
jbrockmendel Nov 15, 2020
2465111
Merge branch 'master' of https://github.com/pandas-dev/pandas into ci…
jbrockmendel Nov 15, 2020
c2e0c73
try ignoring window again
jbrockmendel Nov 15, 2020
27cd294
Merge branch 'master' of https://github.com/pandas-dev/pandas into ci…
jbrockmendel Nov 16, 2020
256a56c
Merge branch 'master' of https://github.com/pandas-dev/pandas into ci…
jbrockmendel Nov 16, 2020
064f686
ignore more
jbrockmendel Nov 16, 2020
ee6f47c
Merge branch 'master' of https://github.com/pandas-dev/pandas into ci…
jbrockmendel Nov 16, 2020
c11fdce
Merge branch 'master' of https://github.com/pandas-dev/pandas into ci…
jbrockmendel Nov 18, 2020
bdb97d4
fixup dont re-run
jbrockmendel Nov 18, 2020
d388c07
Merge branch 'master' of https://github.com/pandas-dev/pandas into ci…
jbrockmendel Nov 18, 2020
f6716c5
ignore plotting
jbrockmendel Nov 18, 2020
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/run_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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/"
PYTEST_CMD="$PYTEST_CMD --ignore=pandas/tests/window/ --ignore=pandas/tests/plotting/"
fi

echo $PYTEST_CMD
Expand Down
4 changes: 2 additions & 2 deletions pandas/tests/plotting/test_groupby.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import numpy as np
import pytest

from pandas.compat import PY38, is_platform_windows
from pandas.compat import is_platform_windows
import pandas.util._test_decorators as td

from pandas import DataFrame, Index, Series
Expand All @@ -15,7 +15,7 @@
@td.skip_if_no_mpl
class TestDataFrameGroupByPlots(TestPlotBase):
@pytest.mark.xfail(
is_platform_windows() and not PY38,
is_platform_windows(),
reason="Looks like LinePlot._is_ts_plot is wrong",
strict=False,
)
Expand Down