Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion .github/workflows/build-container-ubuntu-lts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ jobs:
matrix:
include:
- test-group-name: core-grpc-security
- test-group-name: core-clientapi-streams
- test-group-name: core-http
- test-group-name: core-services
- test-group-name: core-cluster-services
Expand Down
27 changes: 2 additions & 25 deletions scripts/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,6 @@ set -o xtrace

update-ca-certificates

core_clientapi_projects=(
EventStore.Core.Tests
)

core_grpc_security_projects=(
EventStore.Core.Tests
)
Expand Down Expand Up @@ -66,15 +62,9 @@ load_requested_projects() {
all)
requested_projects=()
;;
core-clientapi)
requested_projects=("${core_clientapi_projects[@]}")
;;
core-grpc-security)
requested_projects=("${core_grpc_security_projects[@]}")
;;
core-clientapi-streams)
requested_projects=("${core_clientapi_projects[@]}")
;;
core-rest)
requested_projects=("${core_rest_projects[@]}")
;;
Expand Down Expand Up @@ -117,7 +107,6 @@ validate_shard_coverage() {

declared_projects="$(
printf '%s\n' \
"${core_clientapi_projects[@]}" \
"${core_grpc_security_projects[@]}" \
"${core_rest_projects[@]}" \
"${core_services_projects[@]}" \
Expand Down Expand Up @@ -206,17 +195,11 @@ project_filter() {
local proj="$1"

case "${TEST_GROUP:-all}:$proj" in
core-clientapi:EventStore.Core.Tests)
printf '%s\n' "FullyQualifiedName~EventStore.Core.Tests.ClientAPI"
;;
core-grpc-security:EventStore.Core.Tests)
printf '%s\n' "FullyQualifiedName~EventStore.Core.Tests.Services.Transport.Grpc.Security"
;;
core-clientapi-streams:EventStore.Core.Tests)
printf '%s\n' "FullyQualifiedName~EventStore.Core.Tests.ClientAPI&FullyQualifiedName!~persistent&FullyQualifiedName!~Persistent&FullyQualifiedName!~EventStore.Core.Tests.ClientAPI.Security"
;;
core-http:EventStore.Core.Tests)
printf '%s\n' "(FullyQualifiedName~EventStore.Core.Tests.Http|FullyQualifiedName~EventStore.Core.Tests.Services.Transport.Http)&FullyQualifiedName!~EventStore.Core.Tests.ClientAPI"
printf '%s\n' "(FullyQualifiedName~EventStore.Core.Tests.Http|FullyQualifiedName~EventStore.Core.Tests.Services.Transport.Http)"
;;
core-services:EventStore.Core.Tests)
printf '%s\n' "((FullyQualifiedName~EventStore.Core.Tests.Services&FullyQualifiedName!~EventStore.Core.Tests.Services.Storage&FullyQualifiedName!~EventStore.Core.Tests.Services.Transport.Http&FullyQualifiedName!~EventStore.Core.Tests.Services.Transport.Grpc.Security&FullyQualifiedName!~EventStore.Core.Tests.Services.Transport.Grpc.ServerFeaturesTests&FullyQualifiedName!~EventStore.Core.Tests.Services.ElectionsService)|FullyQualifiedName~EventStore.Core.Tests.Bus|FullyQualifiedName~EventStore.Core.Tests.Helpers|FullyQualifiedName~EventStore.Core.Tests.ClientOperations|FullyQualifiedName~EventStore.Core.Tests.Authentication|FullyQualifiedName~EventStore.Core.Tests.Authorization|FullyQualifiedName~EventStore.Core.Tests.Certificates|FullyQualifiedName~EventStore.Core.Tests.AwakeService|FullyQualifiedName~EventStore.Core.Tests.Settings|FullyQualifiedName~EventStore.Core.Tests.TcpApiTestPlugin)"
Expand All @@ -234,7 +217,7 @@ project_filter() {
printf '%s\n' "FullyQualifiedName~EventStore.Core.Tests.Transforms"
;;
core-rest:EventStore.Core.Tests)
printf '%s\n' "FullyQualifiedName!~EventStore.Core.Tests.ClientAPI&FullyQualifiedName!~EventStore.Core.Tests.Http&FullyQualifiedName!~EventStore.Core.Tests.Services&FullyQualifiedName!~EventStore.Core.Tests.Integration&FullyQualifiedName!~EventStore.Core.Tests.Cluster&FullyQualifiedName!~EventStore.Core.Tests.Bus&FullyQualifiedName!~EventStore.Core.Tests.Helpers&FullyQualifiedName!~EventStore.Core.Tests.ClientOperations&FullyQualifiedName!~EventStore.Core.Tests.Authentication&FullyQualifiedName!~EventStore.Core.Tests.Authorization&FullyQualifiedName!~EventStore.Core.Tests.Certificates&FullyQualifiedName!~EventStore.Core.Tests.AwakeService&FullyQualifiedName!~EventStore.Core.Tests.Replication&FullyQualifiedName!~EventStore.Core.Tests.Settings&FullyQualifiedName!~EventStore.Core.Tests.Synchronization&FullyQualifiedName!~EventStore.Core.Tests.TcpApiTestPlugin&FullyQualifiedName!~EventStore.Core.Tests.Index&FullyQualifiedName!~EventStore.Core.Tests.TransactionLog&FullyQualifiedName!~EventStore.Core.Tests.Caching&FullyQualifiedName!~EventStore.Core.Tests.DataStructures&FullyQualifiedName!~EventStore.Core.Tests.Transforms&FullyQualifiedName!~EventStore.Core.Tests.Hashes"
printf '%s\n' "FullyQualifiedName!~EventStore.Core.Tests.Http&FullyQualifiedName!~EventStore.Core.Tests.Services&FullyQualifiedName!~EventStore.Core.Tests.Integration&FullyQualifiedName!~EventStore.Core.Tests.Cluster&FullyQualifiedName!~EventStore.Core.Tests.Bus&FullyQualifiedName!~EventStore.Core.Tests.Helpers&FullyQualifiedName!~EventStore.Core.Tests.ClientOperations&FullyQualifiedName!~EventStore.Core.Tests.Authentication&FullyQualifiedName!~EventStore.Core.Tests.Authorization&FullyQualifiedName!~EventStore.Core.Tests.Certificates&FullyQualifiedName!~EventStore.Core.Tests.AwakeService&FullyQualifiedName!~EventStore.Core.Tests.Replication&FullyQualifiedName!~EventStore.Core.Tests.Settings&FullyQualifiedName!~EventStore.Core.Tests.Synchronization&FullyQualifiedName!~EventStore.Core.Tests.TcpApiTestPlugin&FullyQualifiedName!~EventStore.Core.Tests.Index&FullyQualifiedName!~EventStore.Core.Tests.TransactionLog&FullyQualifiedName!~EventStore.Core.Tests.Caching&FullyQualifiedName!~EventStore.Core.Tests.DataStructures&FullyQualifiedName!~EventStore.Core.Tests.Transforms&FullyQualifiedName!~EventStore.Core.Tests.Hashes"
;;
esac
}
Expand All @@ -243,15 +226,9 @@ project_timeout() {
local proj="$1"

case "${TEST_GROUP:-all}:$proj" in
core-clientapi:EventStore.Core.Tests)
printf '%s\n' "20m"
;;
core-grpc-security:EventStore.Core.Tests)
printf '%s\n' "20m"
;;
core-clientapi-streams:EventStore.Core.Tests)
printf '%s\n' "20m"
;;
core-rest:EventStore.Core.Tests)
printf '%s\n' "15m"
;;
Expand Down

This file was deleted.

This file was deleted.

Loading
Loading