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

Commit 2ef277f

Browse files
authored
TST: Don't skip tests on Python 3.10 (#155)
1 parent 5914348 commit 2ef277f

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

config.sh

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,5 @@ function run_tests {
3434
# Skip test_rolling_var_numerical_issues: https://github.com/pandas-dev/pandas/issues/37398
3535
# Skip test_rolling_skew_kurt_large_value_range: https://github.com/pandas-dev/pandas/issues/37398
3636
# Skip test_pairwise_with_self/test_no_pairwise_with_self: https://github.com/pandas-dev/pandas/issues/39553
37-
# Skip reduction tests and window test corr_sanity due to numpy issues: https://github.com/pandas-dev/pandas/issues/41935
38-
if [[ "$MB_PYTHON_VERSION" == "3.10" ]]; then
39-
python -c 'import pandas; pandas.test(extra_args=["-m not clipboard", "--skip-slow", "--skip-network", "--skip-db", "-n=2", "-k not test_rolling_var_numerical_issues and not test_rolling_skew_kurt_large_value_range and not test_float_precision_options and not test_pairwise_with_self and not test_no_pairwise_with_self and not test_corr_sanity and not TestReductions and not TestIndexReductions and not test_searchsorted and not test_replace_with_compiled_regex"])'
40-
else
41-
python -c 'import pandas; pandas.test(extra_args=["-m not clipboard", "--skip-slow", "--skip-network", "--skip-db", "-n=2", "-k not test_rolling_var_numerical_issues and not test_rolling_skew_kurt_large_value_range and not test_float_precision_options and not test_pairwise_with_self and not test_no_pairwise_with_self"])'
42-
fi
37+
python -c 'import pandas; pandas.test(extra_args=["-m not clipboard", "--skip-slow", "--skip-network", "--skip-db", "-n=2", "-k not test_rolling_var_numerical_issues and not test_rolling_skew_kurt_large_value_range and not test_float_precision_options and not test_pairwise_with_self and not test_no_pairwise_with_self"])'
4338
}

0 commit comments

Comments
 (0)