We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ab8455 commit b38963eCopy full SHA for b38963e
1 file changed
.github/workflows/run-java-spring-boot-tests.yml
@@ -32,15 +32,14 @@ jobs:
32
run: chmod +x mvnw
33
34
- name: Run unit tests
35
- run: ./mvnw test
+ run: ./mvnw test -DMONGODB_URI="${MONGODB_URI}"
36
env:
37
MONGODB_URI: ${{ secrets.MFLIX_URI }}
38
39
- name: Run integration tests
40
- run: ./mvnw test -Dtest=MongoDBSearchIntegrationTest
+ run: ./mvnw test -Dtest=MongoDBSearchIntegrationTest -DMONGODB_URI="${MONGODB_URI}" -DENABLE_SEARCH_TESTS=true
41
42
43
- ENABLE_SEARCH_TESTS: true
44
continue-on-error: true
45
46
- name: Upload test results
0 commit comments