Skip to content

Commit 0167265

Browse files
WillAydmroeschke
authored andcommittedOct 9, 2024
TST (string dtype): xfail all currently failing tests with future.infer_string (#59329)
* TST (string dtype): xfail all currently failing tests with future.infer_string * more xfails * more xfails * add missing strict=False * also run slow and single cpu tests * fix single_cpu tests * xfail some slow tests * stop suppressing non-zero exit code from pytest on string CI build * remove accidentally added xlsx file --------- Co-authored-by: Matthew Roeschke <[email protected]>
1 parent e5c6a08 commit 0167265

File tree

131 files changed

+539
-23
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

131 files changed

+539
-23
lines changed
 

‎.github/workflows/unit-tests.yml

-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,6 @@ jobs:
8787
pandas_copy_on_write: "warn"
8888
- name: "Future infer strings"
8989
env_file: actions-311.yaml
90-
pattern: "not slow and not network and not single_cpu"
9190
pandas_future_infer_string: "1"
9291
- name: "Pypy"
9392
env_file: actions-pypy-39.yaml

‎ci/run_tests.sh

-6
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,5 @@ if [[ "$PATTERN" ]]; then
1616
PYTEST_CMD="$PYTEST_CMD -m \"$PATTERN\""
1717
fi
1818

19-
# temporarily let pytest always succeed (many tests are not yet passing in the
20-
# build enabling the future string dtype)
21-
if [[ "$PANDAS_FUTURE_INFER_STRING" == "1" ]]; then
22-
PYTEST_CMD="$PYTEST_CMD || true"
23-
fi
24-
2519
echo $PYTEST_CMD
2620
sh -c "$PYTEST_CMD"

0 commit comments

Comments
 (0)