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

remove skip for test_missing_required_dependencies #110

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
3 changes: 1 addition & 2 deletions config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
# test_missing_required_dependencies: https://github.com/pandas-dev/pandas/issues/33999
# 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_missing_required_dependency and not test_file_descriptor_leak"]) 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'
}