From 348fbd49a780c65e39fe29d90b119d13268fa918 Mon Sep 17 00:00:00 2001 From: Simon Hawkins Date: Fri, 27 Nov 2020 15:43:13 +0000 Subject: [PATCH] remove skip for test_maybe_promote_int_with_int --- config.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/config.sh b/config.sh index e98afa2..80afc22 100644 --- a/config.sh +++ b/config.sh @@ -30,7 +30,6 @@ function run_tests { which -a python pip list 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_file_descriptor_leak"]) if sys.version_info[:2] != (3, 7) else None' }