Skip to content

Commit

Permalink
cleanup temp work in makefile
Browse files Browse the repository at this point in the history
Signed-off-by: jbrinkman <[email protected]>
  • Loading branch information
jbrinkman committed Feb 21, 2025
1 parent dd89fd4 commit 397bffa
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions go/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -118,20 +118,6 @@ unit-test:
go test -v ./... -skip 'Example|TestGlideTestSuite' -run Test $(if $(test-filter), -run $(test-filter)) \
| tee >(go tool test2json -t -p github.com/valkey-io/valkey-glide/go/utils | go-test-report -o reports/unit-tests.html -t unit-test > /dev/null)

# start redis cluster with random ports.
start-redis-cluster:
@OUTPUT=$$(python3 ../utils/cluster_manager.py start --cluster-mode); \
GLIDE_CLUSTER_NODES=$$(echo "$$OUTPUT" | grep 'CLUSTER_NODES=' | cut -d'=' -f2); \
echo $$GLIDE_CLUSTER_NODES

stop-redis-cluster:
../utils/cluster_manager.py stop --prefix cluster

var-test:
@OUTPUT=$$(python3 ../utils/cluster_manager.py start --cluster-mode); \
GLIDE_CLUSTER_NODES=$$(echo "$$OUTPUT" | grep 'CLUSTER_NODES=' | cut -d'=' -f2); \
echo $$GLIDE_CLUSTER_NODES

# example tests - skip complete IT suite (including MT)
example-test:
mkdir -p reports
Expand Down

0 comments on commit 397bffa

Please sign in to comment.