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

skip test_float_precision_options, test_rolling_var_numerical_issues and test_rolling_skew_kurt_large_value_range #113

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,8 @@ function run_tests {
which -a python
pip list
python -c 'import pandas; pandas.show_versions()'
python -c 'import pandas; pandas.test(extra_args=["-m not clipboard", "--skip-slow", "--skip-network", "--skip-db", "-n=2"])'
# Skip test_float_precision_options: https://github.com/pandas-dev/pandas/issues/36429
# 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
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"])'
}