From b2085cb05877e9656f65d2d3692f11c04583b49f Mon Sep 17 00:00:00 2001 From: Dan Ryan Date: Thu, 19 Apr 2018 23:55:32 -0400 Subject: [PATCH] Mark pipenv check as flaky Signed-off-by: Dan Ryan --- tests/integration/test_cli.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/integration/test_cli.py b/tests/integration/test_cli.py index caccc57b..aed10ade 100644 --- a/tests/integration/test_cli.py +++ b/tests/integration/test_cli.py @@ -5,7 +5,7 @@ import os import re import pytest - +from flaky import flaky from pipenv.utils import normalize_drive @@ -78,6 +78,7 @@ def test_pipenv_graph_reverse(PipenvInstance, pypi): @pytest.mark.cli @pytest.mark.needs_internet(reason='required by check') +@flaky def test_pipenv_check(PipenvInstance, pypi): with PipenvInstance(pypi=pypi) as p: p.pipenv('install requests==1.0.0')