Skip to content
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
Binary file removed .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion .github/actions/scan-with-sonar/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ runs:
-Dsonar.projectVersion=${{ steps.get-revision.outputs.REVISION }}
-Dsonar.qualitygate.wait=true
-Dsonar.java.source=17
-Dsonar.exclusions=**/sample-app/**
-Dsonar.exclusions=**/integration-tests/**
-Dsonar.coverage.jacoco.xmlReportPaths=${{ github.workspace }}/coverage-report/target/site/jacoco-aggregate/jacoco.xml
-Dsonar.coverage.exclusions=**/src/test/**,**/src/gen/**
-B -ntp
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ runs:

- name: Test Sample App (Integration Tests)
shell: bash
working-directory: sample-app/srv
working-directory: integration-tests/srv
run: |
mvn test -B -V
4 changes: 2 additions & 2 deletions coverage-report/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<!-- Test module: only execution data is included, not classes -->
<dependency>
<groupId>customer</groupId>
<artifactId>sample-app</artifactId>
<artifactId>integration-tests</artifactId>
<version>${revision}</version>
<scope>test</scope>
</dependency>
Expand Down Expand Up @@ -93,7 +93,7 @@
<directory>${project.basedir}/..</directory>
<includes>
<include>cds-feature-notifications/target/jacoco.exec</include>
<include>sample-app/srv/target/jacoco.exec</include>
<include>integration-tests/srv/target/jacoco.exec</include>
</includes>
</fileSet>
</fileSets>
Expand Down
9 changes: 9 additions & 0 deletions integration-tests/.cdsrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"cds": {
"requires": {
"outbox": {
"kind": "persistent-outbox"
}
}
}
}
32 changes: 32 additions & 0 deletions integration-tests/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
**/gen/
**/edmx/
*.db
*.sqlite
*.sqlite-wal
*.sqlite-shm
schema*.sql
default-env.json
default-env.jsonc

**/bin/
**/target/
.flattened-pom.xml
.classpath
.project
.settings

**/node/
**/node_modules/

**/.mta/
*.mtar

*.log*
gc_history*
hs_err*
*.tgz
*.iml

.vscode
.idea
.reloadtrigger
File renamed without changes.
File renamed without changes.
Loading
Loading