Skip to content

Commit

Permalink
Change organization for messaging RP tests and separate cloud/non-clo…
Browse files Browse the repository at this point in the history
…ud tests (#7221)

# Description

- Separate cloud and non-cloud tests for messaging RP
- Organize the UCP tests as per
radius-project/design-notes#35. There will be
more PRs that will follow to re-org the other tests.

## Type of change

<!--

Please select **one** of the following options that describes your
change and delete the others. Clearly identifying the type of change you
are making will help us review your PR faster, and is used in authoring
release notes.

If you are making a bug fix or functionality change to Radius and do not
have an associated issue link please create one now.

-->

- This pull request adds or changes features of Radius and has an
approved issue (#6588 ).

<!--

Please update the following to link the associated issue. This is
required for some kinds of changes (see above).

-->

Fixes: This is part of a multi-PR fix for #6588.

Signed-off-by: vinayada1 <[email protected]>
  • Loading branch information
vinayada1 authored Mar 4, 2024
1 parent e3c8e51 commit c60867b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions build/test.mk
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,10 @@ test-functional-kubernetes: ## Runs Kubernetes functional tests
test-functional-shared: ## Runs shared functional tests
CGO_ENABLED=1 $(GOTEST_TOOL) ./test/functional/shared/... -timeout ${TEST_TIMEOUT} -v -parallel 10 $(GOTEST_OPTS)

test-functional-msgrp: ## Runs Messaging RP functional tests
CGO_ENABLED=1 $(GOTEST_TOOL) ./test/functional/messagingrp/... -timeout ${TEST_TIMEOUT} -v -parallel 2 $(GOTEST_OPTS)
test-functional-msgrp: test-functional-msgrp-noncloud

test-functional-msgrp-noncloud: ## Runs Messaging RP functional tests that do not require cloud resources
CGO_ENABLED=1 $(GOTEST_TOOL) ./test/functional-portable/messagingrp/noncloud/... -timeout ${TEST_TIMEOUT} -v -parallel 2 $(GOTEST_OPTS)

test-functional-daprrp: ## Runs Dapr RP functional tests
CGO_ENABLED=1 $(GOTEST_TOOL) ./test/functional/daprrp/... -timeout ${TEST_TIMEOUT} -v -parallel 3 $(GOTEST_OPTS)
Expand Down

0 comments on commit c60867b

Please sign in to comment.