Skip to content

Commit 493e95c

Browse files
authored
Use dummy auth for MTX Sidecar to fix integration tests (#230)
1 parent 092cf19 commit 493e95c

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

integration-tests/pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,9 @@
6161
<version>3.0.0</version>
6262
<executions>
6363
<execution>
64-
<id>integration-tests</id>
65-
<phase>integration-test</phase>
6664
<goals>
6765
<goal>integration-test</goal>
66+
<goal>verify</goal>
6867
</goals>
6968
</execution>
7069
</executions>
@@ -83,7 +82,7 @@
8382
</goals>
8483
<phase>pre-integration-test</phase>
8584
<configuration>
86-
<arguments>install</arguments>
85+
<arguments>install --no-save</arguments>
8786
<skip>${skipTests}</skip>
8887
<workingDirectory>${sidecar.dir}</workingDirectory>
8988
</configuration>

mtx/sidecar/package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@
1515
"node": "^16"
1616
},
1717
"cds": {
18-
"profile": "mtx-sidecar"
18+
"profile": "mtx-sidecar",
19+
"[development]": {
20+
"requires": { "auth": "dummy" }
21+
}
1922
},
2023
"scripts": {
2124
"start": "cds-serve",

0 commit comments

Comments
 (0)