-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
Move e2e scripts to scripts/e2e #6448
Conversation
Signed-off-by: danish9039 <[email protected]>
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #6448 +/- ##
=======================================
Coverage 96.30% 96.30%
=======================================
Files 371 371
Lines 21160 21160
=======================================
Hits 20379 20379
Misses 598 598
Partials 183 183
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
@@ -45,7 +45,7 @@ jobs: | |||
|
|||
- name: Run cassandra integration tests | |||
id: test-execution | |||
run: bash scripts/cassandra-integration-test.sh ${{ matrix.version.major }} ${{ matrix.version.schema }} ${{ matrix.jaeger-version }} | |||
run: bash scripts/e2e/cassandra-integration-test.sh ${{ matrix.version.major }} ${{ matrix.version.schema }} ${{ matrix.jaeger-version }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
run: bash scripts/e2e/cassandra-integration-test.sh ${{ matrix.version.major }} ${{ matrix.version.schema }} ${{ matrix.jaeger-version }} | |
run: bash scripts/e2e/cassandra.sh ${{ matrix.version.major }} ${{ matrix.version.schema }} ${{ matrix.jaeger-version }} |
please use names provided in the issue
Signed-off-by: danish9039 <[email protected]>
Signed-off-by: danish9039 <[email protected]>
@@ -57,7 +57,7 @@ jobs: | |||
- uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3.2.0 | |||
- name: Run ${{ matrix.version.distribution }} integration tests | |||
id: test-execution | |||
run: bash scripts/es-integration-test.sh ${{ matrix.version.distribution }} ${{ matrix.version.major }} ${{ matrix.version.jaeger }} | |||
run: bash scripts/e2e/es-integration-test.sh ${{ matrix.version.distribution }} ${{ matrix.version.major }} ${{ matrix.version.jaeger }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
run: bash scripts/e2e/es-integration-test.sh ${{ matrix.version.distribution }} ${{ matrix.version.major }} ${{ matrix.version.jaeger }} | |
run: bash scripts/e2e/elasticsearch.sh ${{ matrix.version.distribution }} ${{ matrix.version.major }} ${{ matrix.version.jaeger }} |
.github/workflows/ci-e2e-kafka.yml
Outdated
@@ -34,7 +34,7 @@ jobs: | |||
|
|||
- name: Run kafka integration tests | |||
id: test-execution | |||
run: bash scripts/kafka-integration-test.sh -j ${{ matrix.jaeger-version }} -v ${{ matrix.kafka-version }} | |||
run: bash scripts/e2e/kafka-integration-test.sh -j ${{ matrix.jaeger-version }} -v ${{ matrix.kafka-version }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
run: bash scripts/e2e/kafka-integration-test.sh -j ${{ matrix.jaeger-version }} -v ${{ matrix.kafka-version }} | |
run: bash scripts/e2e/kafka.sh -j ${{ matrix.jaeger-version }} -v ${{ matrix.kafka-version }} |
.github/workflows/ci-e2e-spm.yml
Outdated
@@ -49,4 +49,4 @@ jobs: | |||
uses: ./.github/actions/setup-node.js | |||
|
|||
- name: Run SPM Test | |||
run: bash scripts/spm-integration-test.sh -b ${{ matrix.mode.binary }} | |||
run: bash scripts/e2e/spm-integration-test.sh -b ${{ matrix.mode.binary }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
run: bash scripts/e2e/spm-integration-test.sh -b ${{ matrix.mode.binary }} | |
run: bash scripts/e2e/spm.sh -b ${{ matrix.mode.binary }} |
Signed-off-by: danish9039 <[email protected]>
Which problem is this PR solving?
part of
Description of the changes