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

Commit 6bcb603

Browse files
skip test_float_precision_options, test_rolling_var_numerical_issues and test_rolling_skew_kurt_large_value_range (#113)
1 parent 943ed15 commit 6bcb603

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

config.sh

+4-1
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,8 @@ function run_tests {
3030
which -a python
3131
pip list
3232
python -c 'import pandas; pandas.show_versions()'
33-
python -c 'import pandas; pandas.test(extra_args=["-m not clipboard", "--skip-slow", "--skip-network", "--skip-db", "-n=2"])'
33+
# Skip test_float_precision_options: https://github.com/pandas-dev/pandas/issues/36429
34+
# Skip test_rolling_var_numerical_issues: https://github.com/pandas-dev/pandas/issues/37398
35+
# Skip test_rolling_skew_kurt_large_value_range: https://github.com/pandas-dev/pandas/issues/37398
36+
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"])'
3437
}

0 commit comments

Comments
 (0)