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

[2019.2] Marking the two tests in test_gce as flaky #52551

Merged
Merged
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
4 changes: 3 additions & 1 deletion tests/integration/cloud/clouds/test_gce.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# Import Salt Testing Libs
from tests.support.case import ShellCase
from tests.support.paths import FILES
from tests.support.helpers import expensiveTest, generate_random_name
from tests.support.helpers import expensiveTest, generate_random_name, flaky

TIMEOUT = 500

Expand Down Expand Up @@ -72,6 +72,7 @@ def setUp(self):
.format(provider)
)

@flaky
def test_instance(self):
'''
Tests creating and deleting an instance on GCE
Expand Down Expand Up @@ -100,6 +101,7 @@ def test_instance(self):
except AssertionError:
raise

@flaky
def test_instance_extra(self):
'''
Tests creating and deleting an instance on GCE
Expand Down