We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92f10e1 commit 1671d38Copy full SHA for 1671d38
1 file changed
gremlin-dotnet/docker-compose.yml
@@ -58,8 +58,11 @@ services:
58
- VERTEX_LABEL=dotnet-example
59
working_dir: /gremlin-dotnet
60
command: >
61
- bash -c "dotnet tool update -g dotnet-trx; dotnet test ./Gremlin.Net.sln -c Release --logger trx; /root/.dotnet/tools/trx;
+ bash -c "find . -path '*/TestResults/*.trx' -delete 2>/dev/null || true;
62
+ dotnet tool update -g dotnet-trx; dotnet test ./Gremlin.Net.sln -c Release --logger trx;
63
EXIT_CODE=$$?;
64
+ /root/.dotnet/tools/trx || true;
65
+ if [ $$EXIT_CODE -ne 0 ]; then echo '❌ dotnet test FAILED (exit code '$$EXIT_CODE') — build or test errors above'; fi;
66
echo 'Running examples...';
67
dotnet run --project Examples/BasicGremlin/BasicGremlin.csproj;
68
dotnet run --project Examples/Connections/Connections.csproj;
0 commit comments