From 42e9fa4a8aa0e269c26acbca082098316448ac2f Mon Sep 17 00:00:00 2001 From: Simon Hawkins Date: Tue, 24 Nov 2020 12:17:55 +0000 Subject: [PATCH] Revert "temporary skip of test_float_precision_options (will need green for wheels to be published for 1.2rc)" This reverts commit 3d2e30aaf32baf73f16125604b41721cdf8c772b. --- config.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/config.sh b/config.sh index 5eb2325..e98afa2 100644 --- a/config.sh +++ b/config.sh @@ -31,7 +31,6 @@ 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 - # Skip test_float_precision_options: https://github.com/pandas-dev/pandas/issues/36429 # 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 and not test_float_precision_options"]) 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 and not test_file_descriptor_leak"]) if sys.version_info[:2] != (3, 7) else None' }