Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: enable consistent reads for auth and topics canaries #582

Merged
merged 1 commit into from
Oct 1, 2024
Merged
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
18 changes: 12 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,9 @@ TEST_LOGGER_OPTIONS := --logger "console;verbosity=detailed"
ifneq (,$(findstring NT,$(OS)))
BUILD_TARGETS := build-dotnet6 build-dotnet-framework
TEST_TARGETS := test-dotnet6 test-dotnet-framework
TEST_TARGETS_AUTH_SERVICE := test-dotnet6-auth-service test-dotnet-framework-auth-service
TEST_TARGETS_TOPICS_SERVICE := test-dotnet6-topics-service test-dotnet-framework-topics-service
else
BUILD_TARGETS := build-dotnet6
TEST_TARGETS := test-dotnet6
TEST_TARGETS_AUTH_SERVICE := test-dotnet6-auth-service
TEST_TARGETS_TOPICS_SERVICE := test-dotnet6-topics-service
endif

# Enable gRPC-Web if requested
Expand Down Expand Up @@ -155,7 +151,12 @@ test-dotnet-framework-auth-service:


## Run auth service tests
test-auth-service: ${TEST_TARGETS_AUTH_SERVICE}
test-auth-service:
ifeq (,$(findstring NT,$(OS)))
@CONSISTENT_READS=1 $(MAKE) test-dotnet6-auth-service
else
@set CONSISTENT_READS=1 && $(MAKE) test-dotnet6-auth-service test-dotnet-framework-auth-service
endif


## Run cache service tests
Expand All @@ -178,7 +179,12 @@ test-storage-service:


## Run topics service tests
test-topics-service: ${TEST_TARGETS_TOPICS_SERVICE}
test-topics-service:
ifeq (,$(findstring NT,$(OS)))
@CONSISTENT_READS=1 $(MAKE) test-dotnet6-topics-service
else
@set CONSISTENT_READS=1 && $(MAKE) test-dotnet6-topics-service test-dotnet-framework-topics-service
endif


## Run example applications and snippets
Expand Down
Loading