Skip to content

Commit

Permalink
chore: enable consistent reads on all canary test targets (#523)
Browse files Browse the repository at this point in the history
  • Loading branch information
nand4011 authored Oct 1, 2024
1 parent 39f9580 commit a6948b9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ prod-test: install-ginkgo

test-auth-service: install-ginkgo
@echo "Testing auth service..."
@ginkgo ${GINKGO_OPTS} --label-filter auth-service ${TEST_DIRS}
@CONSISTENT_READS=1 ginkgo ${GINKGO_OPTS} --label-filter auth-service ${TEST_DIRS}


test-cache-service: install-ginkgo
Expand All @@ -89,17 +89,17 @@ test-cache-service: install-ginkgo

test-leaderboard-service: install-ginkgo
@echo "Testing leaderboard service..."
@ginkgo ${GINKGO_OPTS} --label-filter leaderboard-service ${TEST_DIRS}
@CONSISTENT_READS=1 ginkgo ${GINKGO_OPTS} --label-filter leaderboard-service ${TEST_DIRS}


test-storage-service: install-ginkgo
@echo "Testing storage service..."
@ginkgo ${GINKGO_OPTS} --label-filter storage-service ${TEST_DIRS}
@CONSISTENT_READS=1 ginkgo ${GINKGO_OPTS} --label-filter storage-service ${TEST_DIRS}


test-topics-service: install-ginkgo
@echo "Testing topics service..."
@ginkgo ${GINKGO_OPTS} --label-filter topics-service ${TEST_DIRS}
@CONSISTENT_READS=1 ginkgo ${GINKGO_OPTS} --label-filter topics-service ${TEST_DIRS}


vendor:
Expand Down

0 comments on commit a6948b9

Please sign in to comment.