Skip to content

Commit ccebd72

Browse files
committed
Added flaky
1 parent 0aaad78 commit ccebd72

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

icon_font_to_png/test/test_icon_font_downloader.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
from __future__ import unicode_literals
22

3-
import pytest
43
import os
54
import tempfile
65

6+
import pytest
7+
from flaky import flaky
8+
79
from icon_font_to_png.icon_font_downloader import (
810
FontAwesomeDownloader, OcticonsDownloader
911
)
1012

1113

14+
@flaky
1215
@pytest.mark.parametrize("downloader", [
1316
FontAwesomeDownloader,
1417
OcticonsDownloader,

requirements/dev.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
-r common.txt
22
pytest
3+
flaky
34
tox
45
twine
56
pypandoc
6-
coverage
7+
coverage

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ commands=py.test
66
changedir={toxinidir}/icon_font_to_png/test
77
deps=
88
pytest
9+
flaky
910
-rrequirements.txt
1011
setenv=
1112
PYTHONWARNINGS=all

0 commit comments

Comments
 (0)