We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fda319f commit b235680Copy full SHA for b235680
dns/api/main_test.py
@@ -12,8 +12,9 @@
12
# limitations under the License.
13
14
import os
15
+import uuid
16
-from gcp_devrel.testing.flaky import flaky
17
+from flaky import flaky
18
from google.cloud import dns
19
from google.cloud.exceptions import NotFound
20
@@ -22,7 +23,7 @@
22
23
import main
24
25
PROJECT = os.environ['GCLOUD_PROJECT']
-TEST_ZONE_NAME = 'test-zone'
26
+TEST_ZONE_NAME = 'test-zone' + str(uuid.uuid4())
27
TEST_ZONE_DNS_NAME = 'theadora.is.'
28
TEST_ZONE_DESCRIPTION = 'Test zone'
29
dns/api/requirements-test.txt
@@ -1,3 +1,2 @@
1
pytest==5.3.2
2
-gcp-devrel-py-tools==0.0.15
3
flaky==3.6.1
0 commit comments