File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed
Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change 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,
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments