8000 CI: remove failing line by TomAugspurger · Pull Request #24092 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

CI: remove failing line #24092

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

Merged
merged 9 commits into from
Dec 4, 2018
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix skip
  • Loading branch information
TomAugspurger committed Dec 4, 2018
commit e20850e2bd74b5ac890adde148c5e1323f725eb2
2 changes: 1 addition & 1 deletion pandas/tests/io/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def s3_resource(tips_file, jsonl_file):
try:
pytest.importorskip("boto.plugin")
except AttributeError:
raise pytest.skip(reason="moto/moto error")
raise pytest.skip("moto/moto error")
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

wow, that is indeed nasty, haha.

moto = pytest.importorskip('moto')

test_s3_files = [
Expand Down
0