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

[#noissue] Fix incorrect test directory #11103

Merged
merged 1 commit into from
Jun 3, 2024
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
12 changes: 6 additions & 6 deletions .github/workflows/it-command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,14 @@ jobs:
./mvnw --batch-mode -Pit-module -DskipTests clean install
- name: Whole Integration Test
if: github.event.client_payload.slash_command.args.all == ''
working-directory: ./plugins-it
run: ../mvnw --batch-mode clean install -Pit-module -Dmaven.test.failure.ignore=true
working-directory: ./agent-module/plugins-it
run: ../../mvnw --batch-mode clean install -Pit-module -Dmaven.test.failure.ignore=true
- name: Integration Test
if: github.event.client_payload.slash_command.args.all != ''
working-directory: ./plugins-it
run: ../mvnw --batch-mode clean install -Pit-module -pl ${{ github.event.client_payload.slash_command.args.all }} -Dmaven.test.failure.ignore=true
working-directory: ./agent-module/plugins-it
run: ../../mvnw --batch-mode clean install -Pit-module -pl ${{ github.event.client_payload.slash_command.args.all }} -Dmaven.test.failure.ignore=true
- name: Collect reports
working-directory: ./plugins-it
working-directory: ./agent-module/plugins-it
run: |
mkdir -p ./temp
find . -regex ".*/target/failsafe-reports/TEST.*\.xml" -exec cp "{}" ./temp \;
Expand All @@ -79,7 +79,7 @@ jobs:
with:
name: pinpoint-test-results
reporter: java-junit
path: "./plugins-it/temp/TEST-*.xml"
path: "./agent-module/plugins-it/temp/TEST-*.xml"
fail-on-error: "false"
- name: Update comment
uses: peter-evans/create-or-update-comment@v1
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/it-schedule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ jobs:
run: |
./mvnw --batch-mode -Pit-module -DskipTests clean install
- name: Integration Test
working-directory: ./plugins-it
run: ../mvnw --batch-mode clean install -Pit-module -Dmaven.test.failure.ignore=true
working-directory: ./agent-module/plugins-it
run: ../../mvnw --batch-mode clean install -Pit-module -Dmaven.test.failure.ignore=true
- name: Collect reports
working-directory: ./plugins-it
working-directory: ./agent-module/plugins-it
run: |
mkdir -p ./temp
find . -regex ".*/target/failsafe-reports/TEST.*\.xml" -exec cp "{}" ./temp \;
Expand All @@ -58,5 +58,5 @@ jobs:
with:
name: pinpoint-test-results
reporter: java-junit
path: './plugins-it/temp/TEST-*.xml'
path: './agent-module/plugins-it/temp/TEST-*.xml'
fail-on-error: 'false'
Loading