diff --git a/tools/bin/go_core_tests b/tools/bin/go_core_tests
index 0fffcb72a39..30bdf35dc24 100755
--- a/tools/bin/go_core_tests
+++ b/tools/bin/go_core_tests
@@ -8,9 +8,7 @@ EXTRA_FLAGS=""
 
 echo "Test execution results: ---------------------"
 echo ""
-if [[ $GITHUB_EVENT_NAME == "schedule" ]]; then
-  EXTRA_FLAGS="-covermode=atomic -coverpkg=./... -coverprofile=coverage.txt"
-fi
+EXTRA_FLAGS="-covermode=atomic -coverpkg=./... -coverprofile=coverage.txt"
 go test "$EXTRA_FLAGS" $1 | tee $OUTPUT_FILE | grep -Ev '\[no test files\]|\[no tests to run\]'
 EXITCODE=${PIPESTATUS[0]}