Skip to content

Commit b235680

Browse files
authored
switch to regular flaky in dns (#3329)
* remove regular flaky * add uuid to zone
1 parent fda319f commit b235680

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

dns/api/main_test.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@
1212
# limitations under the License.
1313

1414
import os
15+
import uuid
1516

16-
from gcp_devrel.testing.flaky import flaky
17+
from flaky import flaky
1718
from google.cloud import dns
1819
from google.cloud.exceptions import NotFound
1920

@@ -22,7 +23,7 @@
2223
import main
2324

2425
PROJECT = os.environ['GCLOUD_PROJECT']
25-
TEST_ZONE_NAME = 'test-zone'
26+
TEST_ZONE_NAME = 'test-zone' + str(uuid.uuid4())
2627
TEST_ZONE_DNS_NAME = 'theadora.is.'
2728
TEST_ZONE_DESCRIPTION = 'Test zone'
2829

dns/api/requirements-test.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
pytest==5.3.2
2-
gcp-devrel-py-tools==0.0.15
32
flaky==3.6.1

0 commit comments

Comments
 (0)