forked from pandas-dev/pandas
-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TST: Remove explicit connectivity checks in test cases. #1
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
correct FRED test (GDP changed ...)
remove unused import in test_yahoo
DOC/CLN: clean up indentation and dispatch on numpy version
…havior DOC/CLN: cleanup
DOC/BLD: Fix a bunch of doc build warnings that weren't being previously caught
removed to io.clipboard (from io.parsers)
CLN: conform read_clipboard / to_clipboard to new io standards
Implement historical finance data from Google Finance
Tag yahoo data tests as @network only
TST regression tests for GH3836
CLN: remove relative imports
integers or floats that are in an epoch unit of s, ms, us, ns (e.g. unix timestamps or epoch s, with fracional seconds allowed) (GH 3540)
TST: manage truediv in py3 for unit comparisons
ENH use pyperclip for read and to_clipboard
Io to clipboard
BUG: fix Series.interpolate() corner cases, close pandas-dev#3674
FIX hash of DataFrame raises Typerror
ENH: Add unit keyword to Timestamp and to_datetime
BUG: (GH3880) index names are now propogated with loc/ix
BLD: install older versions of numexpr/pytables on fulldeps/2 build
TST: test fixes for various builds (debian)
TST: convert knowntestfailures to skip tests
This should use format since calling str on a unicode string is a *bad* idea because it may or may not repr correctly.
BUG: fix unicode -> str cast in tslib
Instead, network decorator in pandas.util.testing checks for that instead. You have to opt into failing on tests by setting `pandas.util.testing._FORCE_NETWORK_ERROR` to `True`.
wrong repo Github ?? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Instead, network decorator in pandas.util.testing checks for that instead.
You have to opt into failing on tests by setting
pandas.util.testing._FORCE_NETWORK_ERROR
toTrue
.Fixes pandas-dev#3910.
This version of the fix keeps the explicit check that you can connect to
http://www.google.com
as a stand-in for network connectivity.