Skip to content

Commit be8d402

Browse files
committed
Adding script to generate the test projects list
1 parent 515a3a0 commit be8d402

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

.github/workflows/tests.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ jobs:
4141
Hosting.PostgreSQL.Extensions.Tests,
4242
Hosting.Python.Extensions.Tests,
4343
Hosting.RavenDB.Tests,
44+
Hosting.Redis.Extensions.Tests,
4445
Hosting.Rust.Tests,
4546
Hosting.SqlDatabaseProjects.Tests,
4647
Hosting.Sqlite.Tests,
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#! /bin/bash
2+
3+
INDENT=" "
4+
5+
echo "${INDENT}# Hosting integration tests"
6+
find tests -type f -name '*Hosting.*.Tests.csproj' | sort | while read -r file; do
7+
base=$(basename "$file" .csproj)
8+
echo "${INDENT}${base#CommunityToolkit.Aspire.},"
9+
done
10+
11+
echo
12+
13+
echo "${INDENT}# Client integration tests"
14+
find tests -type f -name '*.Tests.csproj' | grep -v Hosting | sort | while read -r file; do
15+
base=$(basename "$file" .csproj)
16+
echo "${INDENT}${base#CommunityToolkit.Aspire.},"
17+
done

0 commit comments

Comments
 (0)