Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing e2e vs integration test naming #4939

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ci-operator/config/openshift/odo/openshift-odo-master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ tests:
as: integration
openshift_installer_src:
cluster_profile: aws
commands: make openshiftci-presubmit-e2e
commands: scripts/openshiftci-presubmit-integrationtests.sh
- artifacts_dir: /tmp/artifacts
as: e2e-scenarios
optional: true
openshift_installer_src:
cluster_profile: aws
commands: scripts/openshiftci-presubmit-e2e-scenarios.sh
commands: scripts/openshiftci-presubmit-e2etests.sh
- as: benchmark
artifacts_dir: /tmp/artifacts
commands: scripts/openshiftci-presubmit-benchmark.sh
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ presubmits:
- name: JOB_NAME_SAFE
value: e2e-scenarios
- name: TEST_COMMAND
value: scripts/openshiftci-presubmit-e2e-scenarios.sh
value: scripts/openshiftci-presubmit-e2etests.sh
image: ci-operator:latest
imagePullPolicy: Always
name: ""
Expand Down Expand Up @@ -165,7 +165,7 @@ presubmits:
- name: JOB_NAME_SAFE
value: integration
- name: TEST_COMMAND
value: make openshiftci-presubmit-e2e
value: scripts/openshiftci-presubmit-integrationtests.sh
image: ci-operator:latest
imagePullPolicy: Always
name: ""
Expand Down