From 1a632187ffbcdf86c34bfd2b5dfa023b0988913a Mon Sep 17 00:00:00 2001 From: Simon Hawkins Date: Fri, 27 Nov 2020 14:42:35 +0000 Subject: [PATCH] unpin pytest-xdist and remove skip for test_file_descriptor_leak --- azure/posix.yml | 2 +- config.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/azure/posix.yml b/azure/posix.yml index 053372d..227ddfa 100644 --- a/azure/posix.yml +++ b/azure/posix.yml @@ -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: diff --git a/config.sh b/config.sh index e98afa2..708e702 100644 --- a/config.sh +++ b/config.sh @@ -32,5 +32,5 @@ function run_tests { python -c 'import pandas; pandas.show_versions()' # Skip test_maybe_promote_int_with_int: https://github.com/pandas-dev/pandas/issues/31856 # TestPandasContainer for 3.7.0 failure - python -c 'import sys; 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"]) if sys.version_info[:2] != (3, 7) else None' + python -c 'import sys; 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"]) if sys.version_info[:2] != (3, 7) else None' }