-
Notifications
You must be signed in to change notification settings - Fork 206
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bring back YAML/try and follow file-name convention (#1916)
- Loading branch information
1 parent
e43a0ff
commit 993ec90
Showing
2 changed files
with
23 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
apiVersion: chainsaw.kyverno.io/v1alpha1 | ||
kind: Test | ||
metadata: | ||
name: ui-cypress | ||
spec: | ||
description: Run E2E tests against Odigos UI using Cypress | ||
skipDelete: true | ||
steps: | ||
- name: Start the UI | ||
try: | ||
- script: | ||
timeout: 300s | ||
content: ../../common/odigos_ui.sh start | ||
- name: Test the UI | ||
try: | ||
- script: | ||
timeout: 300s | ||
content: ../../common/odigos_ui.sh test | ||
- name: End the UI | ||
try: | ||
- script: | ||
timeout: 60s | ||
content: ../../common/odigos_ui.sh end |
This file was deleted.
Oops, something went wrong.