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' }