Skip to content

Commit

Permalink
Disable pinecone tests
Browse files Browse the repository at this point in the history
These are pretty unstable and as a result are making
our nightly builds useless

Relates to: #440
  • Loading branch information
geoand committed Apr 11, 2024
1 parent daf8db2 commit 177efc9
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import org.jboss.shrinkwrap.api.asset.StringAsset;
import org.jboss.shrinkwrap.api.spec.JavaArchive;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.condition.EnabledIfEnvironmentVariable;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.extension.RegisterExtension;

import dev.langchain4j.data.segment.TextSegment;
Expand Down Expand Up @@ -44,7 +44,8 @@
* intermittent failures, it may mean that the delay isn't long enough...
*
*/
@EnabledIfEnvironmentVariable(named = "PINECONE_API_KEY", matches = ".+")
//@EnabledIfEnvironmentVariable(named = "PINECONE_API_KEY", matches = ".+")
@Disabled("This is pretty unstable and making our nightly builds useless")
public class PineconeEmbeddingStoreTest extends EmbeddingStoreIT {

@RegisterExtension
Expand Down

0 comments on commit 177efc9

Please sign in to comment.