8000 Use some more pytest plugins: warnings & rerunfailures by QuLogic · Pull Request #8346 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Use some more pytest plugins: warnings & rerunfailures #8346

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 7 commits into from
Apr 29, 2017
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
TST: Mark test_invisible_Line_rendering as flaky.
Since it depends on "speed", it may sometimes fail, so try again a
couple of times.
  • Loading branch information
QuLogic committed Apr 28, 2017
commit 4c9584475f009b0faf5b7683cd98e029c88beebe
3 changes: 3 additions & 0 deletions lib/matplotlib/tests/test_lines.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
from matplotlib.testing.decorators import image_comparison


# Runtimes on a loaded system are inherently flaky. Not so much that a rerun
# won't help, hopefully.
@pytest.mark.flaky(reruns=3)
def test_invisible_Line_rendering():
"""
Github issue #1256 identified a bug in Line.draw method
Expand Down
0