Skip to content

Commit

Permalink
switch to regular flaky in dns (#3329)
Browse files Browse the repository at this point in the history
* remove regular flaky

* add uuid to zone
  • Loading branch information
leahecole authored Apr 10, 2020
1 parent fda319f commit b235680
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
5 changes: 3 additions & 2 deletions dns/api/main_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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'

Expand Down
1 change: 0 additions & 1 deletion dns/api/requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
pytest==5.3.2
gcp-devrel-py-tools==0.0.15
flaky==3.6.1

0 comments on commit b235680

Please sign in to comment.