tests/ci: fix wrong-import-order pylint warning

This commit is contained in:
Azat Khuzhin 2021-10-27 10:14:39 +03:00
parent 5930714ccd
commit d8a64a7ece
4 changed files with 4 additions and 4 deletions

View File

@ -6,9 +6,9 @@ import json
import os
import sys
import time
from github import Github
from s3_helper import S3Helper
from pr_info import PRInfo
from github import Github
from get_robot_token import get_best_robot_token
from version_helper import get_version_from_repo, update_version_local

View File

@ -5,10 +5,10 @@ import json
import os
import time
import shutil
from github import Github
from report import create_test_html_report
from s3_helper import S3Helper
from pr_info import PRInfo
from github import Github
from get_robot_token import get_best_robot_token, get_parameter_from_ssm
NAME = "Push to Dockerhub (actions)"

View File

@ -6,10 +6,10 @@ import os
import json
import time
import csv
from github import Github
from pr_info import PRInfo
from report import create_test_html_report
from s3_helper import S3Helper
from github import Github
from get_robot_token import get_best_robot_token
NAME = 'Fast test (actions)'

View File

@ -3,8 +3,8 @@ import os
import json
import sys
import logging
from pr_info import PRInfo
from github import Github
from pr_info import PRInfo
from get_robot_token import get_best_robot_token
NAME = 'Run Check (actions)'