Skip to content

Commit

Permalink
TST: Don't skip tests on Python 3.10 (MacPython#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
lithomas1 authored Oct 18, 2021
1 parent 5914348 commit 2ef277f
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,5 @@ function run_tests {
# Skip test_rolling_var_numerical_issues: https://github.com/pandas-dev/pandas/issues/37398
# Skip test_rolling_skew_kurt_large_value_range: https://github.com/pandas-dev/pandas/issues/37398
# Skip test_pairwise_with_self/test_no_pairwise_with_self: https://github.com/pandas-dev/pandas/issues/39553
# Skip reduction tests and window test corr_sanity due to numpy issues: https://github.com/pandas-dev/pandas/issues/41935
if [[ "$MB_PYTHON_VERSION" == "3.10" ]]; then
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"])'
else
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"])'
fi
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"])'
}

0 comments on commit 2ef277f

Please sign in to comment.