Skip to content

Commit da924d8

Browse files
committed
move cleanup.py to iaas dir, where it belongs
Signed-off-by: Matthias Büchse <[email protected]>
1 parent 187f26c commit da924d8

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

.github/workflows/scs-compliance-check-with-application-credential.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
EOF
3535
- name: "Clean up any lingering resources from previous run"
3636
if: ${{ inputs.layer == 'iaas' && inputs.version == 'v4' }}
37-
run: "cd /scs-compliance && ./cleanup.py -c ${{ inputs.cloud }} --prefix _scs- --ipaddr 10.1.0. --debug"
37+
run: "cd /scs-compliance && ./iaas/cleanup.py -c ${{ inputs.cloud }} --prefix _scs- --ipaddr 10.1.0. --debug"
3838
- name: "Run scs-compliance-check"
3939
run: "cd /scs-compliance && ./scs-compliance-check.py scs-compatible-${{ inputs.layer }}.yaml --version ${{ inputs.version }} -o result.yaml -s ${{ inputs.cloud }} -a os_cloud=${{ inputs.cloud }}"
4040
- name: "Upload results"

.github/workflows/scs-compliance-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
EOF
3535
- name: "Clean up any lingering resources from previous run"
3636
if: ${{ inputs.layer == 'iaas' && inputs.version == 'v4' }}
37-
run: "cd /scs-compliance && ./cleanup.py -c ${{ inputs.cloud }} --prefix _scs- --ipaddr 10.1.0. --debug"
37+
run: "cd /scs-compliance && ./iaas/cleanup.py -c ${{ inputs.cloud }} --prefix _scs- --ipaddr 10.1.0. --debug"
3838
- name: "Run scs-compliance-check"
3939
run: "cd /scs-compliance && ./scs-compliance-check.py scs-compatible-${{ inputs.layer }}.yaml --version ${{ inputs.version }} -o result.yaml -s ${{ inputs.cloud }} -a os_cloud=${{ inputs.cloud }}"
4040
- name: "Upload results"
File renamed without changes.

Tests/scs-test-runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class Config:
3232
def __init__(self):
3333
self.cwd = os.path.abspath(os.path.dirname(sys.argv[0]) or os.getcwd())
3434
self.scs_compliance_check = os.path.join(self.cwd, 'scs-compliance-check.py')
35-
self.cleanup_py = os.path.join(self.cwd, 'cleanup.py')
35+
self.cleanup_py = os.path.join(self.cwd, 'iaas', 'cleanup.py')
3636
self.run_plugin_py = os.path.join(self.cwd, 'kaas', 'plugin', 'run_plugin.py')
3737
self.ssh_keygen = shutil.which('ssh-keygen')
3838
self.curl = shutil.which('curl')

0 commit comments

Comments
 (0)