From b235680b537c6c85bb80c31186844a3130709c9e Mon Sep 17 00:00:00 2001 From: "Leah E. Cole" <6719667+leahecole@users.noreply.github.com> Date: Fri, 10 Apr 2020 13:46:10 -0700 Subject: [PATCH] switch to regular flaky in dns (#3329) * remove regular flaky * add uuid to zone --- dns/api/main_test.py | 5 +++-- dns/api/requirements-test.txt | 1 - 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dns/api/main_test.py b/dns/api/main_test.py index 8846c5c2b705..11b2f05d33c7 100644 --- a/dns/api/main_test.py +++ b/dns/api/main_test.py @@ -12,8 +12,9 @@ # limitations under the License. import os +import uuid -from gcp_devrel.testing.flaky import flaky +from flaky import flaky from google.cloud import dns from google.cloud.exceptions import NotFound @@ -22,7 +23,7 @@ import main PROJECT = os.environ['GCLOUD_PROJECT'] -TEST_ZONE_NAME = 'test-zone' +TEST_ZONE_NAME = 'test-zone' + str(uuid.uuid4()) TEST_ZONE_DNS_NAME = 'theadora.is.' TEST_ZONE_DESCRIPTION = 'Test zone' diff --git a/dns/api/requirements-test.txt b/dns/api/requirements-test.txt index 1f10be83760a..1b569cb4f2c7 100644 --- a/dns/api/requirements-test.txt +++ b/dns/api/requirements-test.txt @@ -1,3 +1,2 @@ pytest==5.3.2 -gcp-devrel-py-tools==0.0.15 flaky==3.6.1