-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- fix relative module paths to absolute
- Loading branch information
Showing
19 changed files
with
33 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
"""Decryptors for configuration values. | ||
""" | ||
|
||
from .sops import SOPS | ||
from ploigos_step_runner.config.decryptors.sops import SOPS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
""" | ||
com.redhat.ploigos_step_runner.step_implementers | ||
"""StepImplementer implementations. | ||
""" |
3 changes: 2 additions & 1 deletion
3
src/ploigos_step_runner/step_implementers/container_image_static_compliance_scan/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
"""`StepImplementers` for the `container-image-static-compliance-scan` step. | ||
""" | ||
|
||
from .openscap import OpenSCAP | ||
from ploigos_step_runner.step_implementers.container_image_static_compliance_scan.\ | ||
openscap import OpenSCAP |
3 changes: 2 additions & 1 deletion
3
...oigos_step_runner/step_implementers/container_image_static_vulnerability_scan/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
"""`StepImplementers` for the `container-image-static-vulnerability-scan` step. | ||
""" | ||
|
||
from .openscap import OpenSCAP | ||
from ploigos_step_runner.step_implementers.container_image_static_vulnerability_scan.\ | ||
openscap import OpenSCAP |
2 changes: 1 addition & 1 deletion
2
src/ploigos_step_runner/step_implementers/create_container_image/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
"""`StepImplementers` for the `create-container-image` step. | ||
""" | ||
|
||
from .buildah import Buildah | ||
from ploigos_step_runner.step_implementers.create_container_image.buildah import Buildah |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
"""`StepImplementers` for the `deploy` step. | ||
""" | ||
|
||
from .argocd import ArgoCD | ||
from ploigos_step_runner.step_implementers.deploy.argocd import ArgoCD |
8 changes: 4 additions & 4 deletions
8
src/ploigos_step_runner/step_implementers/generate_metadata/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
"""`StepImplementers` for the `generate-metadata` step. | ||
""" | ||
|
||
from .git import Git | ||
from .maven import Maven | ||
from .npm import Npm | ||
from .semantic_version import SemanticVersion | ||
from ploigos_step_runner.step_implementers.generate_metadata.git import Git | ||
from ploigos_step_runner.step_implementers.generate_metadata.maven import Maven | ||
from ploigos_step_runner.step_implementers.generate_metadata.npm import Npm | ||
from ploigos_step_runner.step_implementers.generate_metadata.semantic_version import SemanticVersion |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
"""`StepImplementers` for the `package` step. | ||
""" | ||
|
||
from .maven import Maven | ||
from ploigos_step_runner.step_implementers.package.maven import Maven |
2 changes: 1 addition & 1 deletion
2
src/ploigos_step_runner/step_implementers/push_artifacts/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
"""`StepImplementers` for the `push-artifacts` step. | ||
""" | ||
|
||
from .maven import Maven | ||
from ploigos_step_runner.step_implementers.push_artifacts.maven import Maven |
2 changes: 1 addition & 1 deletion
2
src/ploigos_step_runner/step_implementers/push_container_image/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
"""`StepImplementers` for the `push-container-image` step. | ||
""" | ||
|
||
from .skopeo import Skopeo | ||
from ploigos_step_runner.step_implementers.push_container_image.skopeo import Skopeo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
"""StepImplementer parent classes that are shared accross multiple steps. | ||
""" | ||
|
||
from .maven_generic import MavenGeneric | ||
from .openscap_generic import OpenSCAPGeneric | ||
from ploigos_step_runner.step_implementers.shared.maven_generic import MavenGeneric | ||
from ploigos_step_runner.step_implementers.shared.openscap_generic import OpenSCAPGeneric |
4 changes: 2 additions & 2 deletions
4
src/ploigos_step_runner/step_implementers/sign_container_image/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
"""`StepImplementers` for the `sign-container-image` step. | ||
""" | ||
|
||
from .curl_push import CurlPush | ||
from .podman_sign import PodmanSign | ||
from ploigos_step_runner.step_implementers.sign_container_image.curl_push import CurlPush | ||
from ploigos_step_runner.step_implementers.sign_container_image.podman_sign import PodmanSign |
2 changes: 1 addition & 1 deletion
2
src/ploigos_step_runner/step_implementers/static_code_analysis/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
"""`StepImplementers` for the `static-code-analysis` step. | ||
""" | ||
|
||
from .sonarqube import SonarQube | ||
from ploigos_step_runner.step_implementers.static_code_analysis.sonarqube import SonarQube |
2 changes: 1 addition & 1 deletion
2
src/ploigos_step_runner/step_implementers/tag_source/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
"""`StepImplementers` for the `tag-source` step. | ||
""" | ||
|
||
from .git import Git | ||
from ploigos_step_runner.step_implementers.tag_source.git import Git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
"""`StepImplementers` for the `uat` (User Acceptance Tests) step. | ||
""" | ||
|
||
from .maven_selenium_cucumber import MavenSeleniumCucumber | ||
from ploigos_step_runner.step_implementers.uat.maven_selenium_cucumber import MavenSeleniumCucumber |
2 changes: 1 addition & 1 deletion
2
src/ploigos_step_runner/step_implementers/unit_test/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
"""`StepImplementers` for the `unit-test` step. | ||
""" | ||
from .maven import Maven | ||
from ploigos_step_runner.step_implementers.unit_test.maven import Maven |
6 changes: 4 additions & 2 deletions
6
src/ploigos_step_runner/step_implementers/validate_environment_configuration/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
"""`StepImplementers` for the `validate-environment-configuration` step. | ||
""" | ||
from .configlint import Configlint | ||
from .configlint_from_argocd import ConfiglintFromArgocd | ||
from ploigos_step_runner.step_implementers.validate_environment_configuration.\ | ||
configlint import Configlint | ||
from ploigos_step_runner.step_implementers.validate_environment_configuration.\ | ||
configlint_from_argocd import ConfiglintFromArgocd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,6 +53,7 @@ commands = | |
coverage report --fail-under=100 | ||
|
||
[testenv:lint] | ||
skip_install = True | ||
deps = | ||
pylint | ||
flake8 | ||
|