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
7 changes: 7 additions & 0 deletions modules/pinecone/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@ description = "Testcontainers :: ActiveMQ"
dependencies {
api project(':testcontainers')

testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.11.0'

testImplementation 'org.junit.jupiter:junit-jupiter:5.13.4'
testImplementation 'org.assertj:assertj-core:3.27.3'
testImplementation 'io.pinecone:pinecone-client:3.1.0'
}

test {
useJUnitPlatform()
}
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
package org.testcontainers.pinecone;

import io.pinecone.clients.Pinecone;
import org.junit.Test;
import org.junit.jupiter.api.Test;
import org.openapitools.db_control.client.model.DeletionProtection;
import org.openapitools.db_control.client.model.IndexModel;

import static org.assertj.core.api.Assertions.assertThat;

public class PineconeLocalContainerTest {
class PineconeLocalContainerTest {

@Test
public void testSimple() {
void testSimple() {
try ( // container {
PineconeLocalContainer container = new PineconeLocalContainer("ghcr.io/pinecone-io/pinecone-local:v0.7.0")
// }
Expand Down
Loading