Skip to content

Commit 5d1f8c8

Browse files
authored
Merge pull request #468 from GoogleCloudPlatform/nox-lint-per-sample
2 parents 7fa979f + 94690fe commit 5d1f8c8

File tree

96 files changed

+224
-116
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+224
-116
lines changed

appengine/flexible/endpoints/main_test.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,10 @@
1616
import json
1717
import os
1818

19-
import main
2019
import pytest
2120

21+
import main
22+
2223

2324
@pytest.fixture
2425
def client(monkeypatch):

appengine/flexible/extending_runtime/main_test.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,10 @@
1414

1515
import os
1616

17-
import main
1817
import pytest
1918

19+
import main
20+
2021

2122
@pytest.mark.skipif(
2223
not os.path.exists('/usr/games/fortune'),

appengine/flexible/extending_runtime_compat/main_test.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,10 @@
1414

1515
import os
1616

17-
import main
1817
import pytest
1918

19+
import main
20+
2021

2122
@pytest.mark.skipif(
2223
not os.path.exists('/usr/games/fortune'),

appengine/flexible/memcache/main_test.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
import main
1615
import pytest
1716

17+
import main
18+
1819

1920
def test_index():
2021
try:

appengine/flexible/pubsub/main_test.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,10 @@
1616
import json
1717
import os
1818

19-
import main
2019
import pytest
2120

21+
import main
22+
2223

2324
@pytest.fixture
2425
def client():

appengine/flexible/redis/main_test.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
import main
1615
import pytest
1716

17+
import main
18+
1819

1920
def test_index():
2021
try:

appengine/flexible/storage/main_test.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,12 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
import main
1615
import pytest
1716
import requests
1817
from six import BytesIO
1918

19+
import main
20+
2021

2122
@pytest.fixture
2223
def client():

appengine/standard/__init__.py

Whitespace-only changes.

appengine/standard/app_identity/asserting/main_test.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,11 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
import main
1615
import mock
1716
import webtest
1817

18+
import main
19+
1920

2021
def test_app(testbed):
2122
app = webtest.TestApp(main.app)

appengine/standard/app_identity/incoming/main_test.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
import main
1615
import webtest
1716

17+
import main
18+
1819

1920
def test_app(testbed):
2021
app = webtest.TestApp(main.app)

0 commit comments

Comments
 (0)