Skip to content
This repository was archived by the owner on Aug 4, 2023. It is now read-only.

Commit f537bfc

Browse files
isort'ed imports
1 parent 1535a0e commit f537bfc

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

.gitlab-ci.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,13 @@
77
pipeline.add_service("docker:dind")
88

99
pipeline.add_children(
10-
python.isort(),
11-
python.flake8(),
12-
python.pytest(),
13-
python.evaluate_git_tag_pep404_conformity(),
10+
python.isort(), python.flake8(), python.pytest(), python.evaluate_git_tag_pep404_conformity(),
1411
kaniko.execute(
1512
image_name="thomass/gcip",
1613
enable_push=(PredefinedVariables.CI_COMMIT_TAG or PredefinedVariables.CI_COMMIT_BRANCH == "master"),
1714
dockerhub_user_env_var="DOCKER_USER",
1815
dockerhub_login_env_var="DOCKER_LOGIN",
19-
)
16+
)
2017
)
2118

2219
pipeline.write_yaml()

gcip/core/pipeline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
from . import OrderedSetType
44
from .include import Include
5-
from .job_sequence import JobSequence
65
from .service import Service
6+
from .job_sequence import JobSequence
77

88
__author__ = "Thomas Steinbach"
99
__copyright__ = "Copyright 2020 DB Systel GmbH"

0 commit comments

Comments
 (0)