Skip to content
This repository was archived by the owner on May 3, 2023. It is now read-only.

unpin pytest-xdist and remove skip for test_file_descriptor_leak #116

Merged
merged 2 commits into from
Nov 28, 2020
Merged
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 azure/posix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
CYTHON_BUILD_DEP: "cython==0.29.21"
NIGHTLY_BUILD_COMMIT: "master"
NIGHTLY_BUILD: "false"
TEST_DEPENDS: "pytest pytest-xdist==1.* hypothesis"
TEST_DEPENDS: "pytest pytest-xdist hypothesis"
TEST_DIR: "tmp_for_test"
strategy:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ function run_tests {
pip list
python -c 'import pandas; pandas.show_versions()'
# Skip test_maybe_promote_int_with_int: https://github.com/pandas-dev/pandas/issues/31856
python -c 'import pandas; pandas.test(extra_args=["-m not clipboard", "--skip-slow", "--skip-network", "--skip-db", "-n=2", "-k not test_maybe_promote_int_with_int and not test_file_descriptor_leak"])'
python -c 'import pandas; pandas.test(extra_args=["-m not clipboard", "--skip-slow", "--skip-network", "--skip-db", "-n=2", "-k not test_maybe_promote_int_with_int"])'
}