Skip to content

Commit 7a6dd93

Browse files
committed
debug CI
1 parent aa60623 commit 7a6dd93

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.github/workflows/cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
uses: gradle/gradle-build-action@v2
3636
with:
3737
gradle-version: 8.5
38-
arguments: test
38+
arguments: test --info
3939

4040
- name: Test Results
4141
uses: mikepenz/action-junit-report@v4

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ jobs:
3131
uses: gradle/gradle-build-action@v2
3232
with:
3333
gradle-version: 8.5
34-
arguments: build
34+
arguments: build --info
3535

3636
- name: Test
3737
uses: gradle/gradle-build-action@v2
3838
with:
3939
gradle-version: 8.5
40-
arguments: test
40+
arguments: test --info

src/test/java/io/qdrant/client/PointsTest.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ public void retrieve() throws ExecutionException, InterruptedException {
111111
assertEquals(ImmutableSet.of("foo", "bar", "date"), point.getPayloadMap().keySet());
112112
assertEquals(value("goodbye"), point.getPayloadMap().get("foo"));
113113
assertEquals(value(2), point.getPayloadMap().get("bar"));
114+
System.out.println("point.getVectors() = " + point.getVectors());
114115
assertEquals(Vectors.getDefaultInstance(), point.getVectors());
115116
}
116117

@@ -125,6 +126,9 @@ public void retrieve_with_vector_without_payload()
125126
RetrievedPoint point = points.get(0);
126127
assertEquals(id(8), point.getId());
127128
assertTrue(point.getPayloadMap().isEmpty());
129+
System.out.println(
130+
"point.getVectors().getVectorsOptionsCase() = "
131+
+ point.getVectors().getVectorsOptionsCase());
128132
assertEquals(Vectors.VectorsOptionsCase.VECTOR, point.getVectors().getVectorsOptionsCase());
129133
}
130134

0 commit comments

Comments
 (0)