Skip to content

Commit 5ef6fba

Browse files
committed
Rename stackhpc-openstack-tests
1 parent 4a55d94 commit 5ef6fba

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.github/workflows/stackhpc-all-in-one.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ jobs:
439439
KAYOBE_AUTOMATION_SSH_PRIVATE_KEY: ${{ steps.ssh_key.outputs.ssh_key }}
440440

441441
- name: StackHPC OpenStack tests
442-
id: stackhpc-openstack-tests
442+
id: stackhpc-cloud-tests
443443
continue-on-error: true
444444
run: |
445445
mkdir -p sot-results
@@ -448,7 +448,7 @@ jobs:
448448
-v $(pwd)/sot-results:/stack/sot-results \
449449
-e KAYOBE_ENVIRONMENT -e KAYOBE_VAULT_PASSWORD -e KAYOBE_AUTOMATION_SSH_PRIVATE_KEY \
450450
$KAYOBE_IMAGE \
451-
/stack/kayobe-automation-env/src/kayobe-config/.automation/pipeline/playbook-run.sh '$KAYOBE_CONFIG_PATH/ansible/stackhpc-openstack-tests.yml'
451+
/stack/kayobe-automation-env/src/kayobe-config/.automation/pipeline/playbook-run.sh '$KAYOBE_CONFIG_PATH/ansible/stackhpc-cloud-tests.yml'
452452
env:
453453
KAYOBE_AUTOMATION_SSH_PRIVATE_KEY: ${{ steps.ssh_key.outputs.ssh_key }}
454454

@@ -474,7 +474,7 @@ jobs:
474474
diagnostics/
475475
tempest-artifacts/
476476
sot-results/
477-
if: ${{ !cancelled() && (steps.tempest.outcome == 'success' || steps.stackhpc-openstack-tests.outcome == 'success' || steps.diagnostics.outcome == 'success') }}
477+
if: ${{ !cancelled() && (steps.tempest.outcome == 'success' || steps.stackhpc-cloud-tests.outcome == 'success' || steps.diagnostics.outcome == 'success') }}
478478

479479
- name: Fail if any Tempest tests failed
480480
run: |
@@ -485,7 +485,7 @@ jobs:
485485
echo "Some StackHPC OpenStack tests failed."
486486
echo "See HTML results artifact (sot-results) for details."
487487
exit 1
488-
if: steps.stackhpc-openstack-tests.outcome == 'failure'
488+
if: steps.stackhpc-cloud-tests.outcome == 'failure'
489489

490490
- name: Destroy
491491
run: terraform destroy -auto-approve

doc/source/contributor/testing-ci-automation.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ The workflow performs the following high-level steps:
123123
#. If this is an upgrade job, upgrade the cloud under test to the target
124124
release.
125125
#. Run Tempest and `StackHPC OpenStack Tests
126-
<https://github.com/stackhpc/stackhpc-openstack-tests>`_ to test the cloud.
126+
<https://github.com/stackhpc/stackhpc-cloud-tests>`_ to test the cloud.
127127
#. Collect diagnostic information.
128128
#. Upload results as an artifact.
129129
#. Destroy the VM using Terraform.
@@ -346,11 +346,11 @@ The workflow performs the following high-level steps:
346346
#. Register test resources in the cloud under test (images, flavors, networks,
347347
subnets, routers, etc.).
348348
#. Run Tempest and `StackHPC OpenStack Tests
349-
<https://github.com/stackhpc/stackhpc-openstack-tests>`__ to test the cloud.
349+
<https://github.com/stackhpc/stackhpc-cloud-tests>`__ to test the cloud.
350350
#. If this is an upgrade job, upgrade the cloud under test to the target
351351
release.
352352
#. Run Tempest and `StackHPC OpenStack Tests
353-
<https://github.com/stackhpc/stackhpc-openstack-tests>`__ to test the cloud.
353+
<https://github.com/stackhpc/stackhpc-cloud-tests>`__ to test the cloud.
354354
#. Collect diagnostic information.
355355
#. Upload results as an artifact.
356356
#. Destroy the VMs using Terraform.

etc/kayobe/ansible/stackhpc-openstack-tests.yml renamed to etc/kayobe/ansible/stackhpc-cloud-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
- name: Run StackHPC OpenStack tests
33
hosts: tempest_runner
44
tags:
5-
- stackhpc-openstack-tests
5+
- stackhpc-cloud-tests
66
vars:
77
sot_venv: "{{ virtualenv_path }}/sot-venv"
8-
sot_repo: https://github.com/stackhpc/stackhpc-openstack-tests
8+
sot_repo: https://github.com/stackhpc/stackhpc-cloud-tests
99
sot_version: v0.0.1
1010
sot_timeout: 30
1111
results_path_local: "{{ lookup('env', 'HOME') }}/sot-results"
@@ -64,7 +64,7 @@
6464
ansible.builtin.command:
6565
cmd: >
6666
{{ sot_venv }}/bin/py.test
67-
--html={{ results_tmpdir.path }}/stackhpc-openstack-tests.html
67+
--html={{ results_tmpdir.path }}/stackhpc-cloud-tests.html
6868
--self-contained-html
6969
--pyargs stackhpc_openstack_tests
7070
--timeout {{ sot_timeout }}
@@ -88,7 +88,7 @@
8888
always:
8989
- name: Fetch results
9090
ansible.builtin.fetch:
91-
src: "{{ results_tmpdir.path }}/stackhpc-openstack-tests.html"
91+
src: "{{ results_tmpdir.path }}/stackhpc-cloud-tests.html"
9292
dest: "{{ results_path_local }}/"
9393
flat: true
9494

0 commit comments

Comments
 (0)