We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0aaad78 commit ccebd72Copy full SHA for ccebd72
icon_font_to_png/test/test_icon_font_downloader.py
@@ -1,14 +1,17 @@
1
from __future__ import unicode_literals
2
3
-import pytest
4
import os
5
import tempfile
6
+import pytest
7
+from flaky import flaky
8
+
9
from icon_font_to_png.icon_font_downloader import (
10
FontAwesomeDownloader, OcticonsDownloader
11
)
12
13
14
+@flaky
15
@pytest.mark.parametrize("downloader", [
16
FontAwesomeDownloader,
17
OcticonsDownloader,
requirements/dev.txt
@@ -1,6 +1,7 @@
-r common.txt
pytest
+flaky
tox
twine
pypandoc
-coverage
+coverage
tox.ini
@@ -6,6 +6,7 @@ commands=py.test
changedir={toxinidir}/icon_font_to_png/test
deps=
+ flaky
-rrequirements.txt
setenv=
PYTHONWARNINGS=all
0 commit comments