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 0952e89 commit b8792d9Copy full SHA for b8792d9
appengine/standard/conftest.py
@@ -14,16 +14,14 @@
14
15
import os
16
17
-import six
18
-
19
20
# Import py.test hooks and fixtures for App Engine
21
from gcp.testing.appengine import (
22
login,
23
pytest_configure,
24
pytest_runtest_call,
25
run_tasks,
26
testbed)
+import six
27
28
(login)
29
(pytest_configure)
@@ -33,7 +31,7 @@
33
31
34
32
35
def pytest_ignore_collect(path, config):
36
- """Skip App Engine tests in python 3 and if no SDK is available."""
+ """Skip App Engine tests in python 3 or if no SDK is available."""
37
if 'appengine/standard' in str(path):
38
if six.PY3:
39
return True
0 commit comments