diff --git a/build.py b/build.py index fee53de8f..18ceb93ad 100644 --- a/build.py +++ b/build.py @@ -15,6 +15,7 @@ # License for the specific language governing permissions and limitations # under the License. + def main(): pass diff --git a/ci.py b/ci.py index 36a83df89..d57a8d8bc 100644 --- a/ci.py +++ b/ci.py @@ -25,15 +25,14 @@ import re import shutil import signal +import six import subprocess import sys import time import yaml -import six -from google.oauth2 import service_account from google.cloud import storage - +from google.oauth2 import service_account TAG_REGEX = re.compile(r'^!(\w+)(?:\s+([\w-]+))?$') @@ -772,7 +771,7 @@ def kill(signal, frame): if time_delta == 1500: print ('Tempest-tests timed out at 25 min') raise TempestTestFailedException() - if time_delta % 30 == 0: + if time_delta % 30 == 0: # noqa: S001 print ('Still running tempest-tests') time_delta += 1 time.sleep(1)