Skip to content

Commit

Permalink
Add new Justfile commands to allow running ind. tests
Browse files Browse the repository at this point in the history
  • Loading branch information
aulorbe committed Jul 15, 2024
1 parent c5939b4 commit 5599de7
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@ test:
source .env
set +o allexport
go test -count=1 -v ./pinecone
test-integration:
#!/usr/bin/env bash
set -o allexport
source .env
set +o allexport
go test -count=1 -v -run TestIntegrationClient ./pinecone
test-unit:
#!/usr/bin/env bash
set -o allexport
source .env
set +o allexport
go test -v -run Unit ./pinecone
bootstrap:
go install google.golang.org/protobuf/cmd/[email protected]
go install google.golang.org/grpc/cmd/[email protected]
Expand Down

0 comments on commit 5599de7

Please sign in to comment.