Skip to content

Commit

Permalink
test: make cloud_stack a dependency
Browse files Browse the repository at this point in the history
Signed-off-by: gardar <[email protected]>
  • Loading branch information
gardar committed Jan 15, 2024
1 parent ea4b22f commit e930a7c
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/full-integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
run: |
echo ansible-test-molecule="[`for x in $(find tests/integration/targets -maxdepth 1 -mindepth 1 -type d -iname "molecule-*" -printf "%f\n");
do echo '{"test":\"'"${x}"'\","name":\"'"${x#*-}\"'"}'; done | tr '\n' ',' | sed '$s/,$//'`]" >> $GITHUB_OUTPUT
echo ansible-test-integration="[`for x in $(find tests/integration/targets -maxdepth 1 -mindepth 1 -type d -not -iname "molecule-*" -printf "%f\n");
echo ansible-test-integration="[`for x in $(find tests/integration/targets -maxdepth 1 -mindepth 1 -type d -not -iname "molecule-*" -not -iname "*_cloud_stack" -printf "%f\n");

Check warning on line 38 in .github/workflows/full-integration-test.yml

View workflow job for this annotation

GitHub Actions / Perform Linting

38:151 [line-length] line too long (186 > 150 characters)
do echo '{"test":\"'"${x}"'\","name":\"'"${x}\"'"}'; done | tr '\n' ',' | sed '$s/,$//'`]" >> $GITHUB_OUTPUT
ansible-test-molecule:
Expand Down
3 changes: 3 additions & 0 deletions tests/integration/targets/alert_contact_point/meta/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
dependencies:
- create_cloud_stack
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
dependencies:
- create_cloud_stack
3 changes: 3 additions & 0 deletions tests/integration/targets/cloud_api_key/meta/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
dependencies:
- create_cloud_stack
3 changes: 3 additions & 0 deletions tests/integration/targets/cloud_plugin/meta/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
dependencies:
- create_cloud_stack
3 changes: 3 additions & 0 deletions tests/integration/targets/dashboard/meta/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
dependencies:
- create_cloud_stack
3 changes: 3 additions & 0 deletions tests/integration/targets/datasource/meta/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
dependencies:
- create_cloud_stack
3 changes: 3 additions & 0 deletions tests/integration/targets/folder/meta/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
dependencies:
- create_cloud_stack

0 comments on commit e930a7c

Please sign in to comment.