Skip to content
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

Use SVG version of Travis CI status icon #130

Closed
wants to merge 1 commit into from
Closed
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
8 changes: 4 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ flaky
.. image:: http://opensource.box.com/badges/active.svg
:target: http://opensource.box.com/badges

.. image:: https://travis-ci.org/box/flaky.png?branch=master
.. image:: https://travis-ci.org/box/flaky.svg?branch=master
:target: https://travis-ci.org/box/flaky

.. image:: https://img.shields.io/pypi/v/flaky.svg
Expand Down Expand Up @@ -103,13 +103,13 @@ Flaky will run `test_something` twice, but will only run `test_something_else` o
It can also be used to incur a delay between test retries:

.. code-block:: python

import time

def delay_rerun(*args):
time.sleep(1)
return True

@flaky(rerun_filter=delay_rerun)
def test_something_else():
...
Expand Down