This is an automated email from the ASF dual-hosted git repository.

xiazcy pushed a commit to branch 3.7-dev
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


The following commit(s) were added to refs/heads/3.7-dev by this push:
     new b812c8b1d7 .NET error logging improvement (cherry-picking to 3.7-dev 
from #3134)
b812c8b1d7 is described below

commit b812c8b1d746362a76f14e3d5a69c7704e928ce5
Author: xiazcy <xia...@gmail.com>
AuthorDate: Mon Jun 23 17:33:15 2025 -0700

    .NET error logging improvement (cherry-picking to 3.7-dev from #3134)
---
 .gitignore                        | 1 +
 gremlin-dotnet/docker-compose.yml | 2 +-
 pom.xml                           | 1 +
 3 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/.gitignore b/.gitignore
index 07032d9d79..6dc5464f5e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,6 +6,7 @@ target/
 *.DS_Store
 *.ipr
 *.swp
+TestResults/
 buildAll.sh
 build_output.txt
 .classpath
diff --git a/gremlin-dotnet/docker-compose.yml 
b/gremlin-dotnet/docker-compose.yml
index 7f5efab9df..5cb2363150 100644
--- a/gremlin-dotnet/docker-compose.yml
+++ b/gremlin-dotnet/docker-compose.yml
@@ -55,7 +55,7 @@ services:
       - DOCKER_ENVIRONMENT=true
     working_dir: /gremlin-dotnet
     command: >
-      bash -c "dotnet test ./Gremlin.Net.sln -c Release;
+      bash -c "dotnet tool update -g dotnet-trx; dotnet test ./Gremlin.Net.sln 
-c Release --logger trx; /root/.dotnet/tools/trx;
       EXIT_CODE=$$?; chown -R `stat -c "%u:%g" .` .; exit $$EXIT_CODE"
     depends_on:
       gremlin-server-test-dotnet:
diff --git a/pom.xml b/pom.xml
index 50aad5a6e8..35f7d63f87 100644
--- a/pom.xml
+++ b/pom.xml
@@ -490,6 +490,7 @@ limitations under the License.
                         <exclude>**/*.graffle</exclude>
                         <exclude>**/*.svg</exclude>
                         <exclude>**/goal.txt</exclude>
+                        <exclude>**/*.trx</exclude>
                         
<exclude>**/src/main/resources/META-INF/services/**</exclude>
                         
<exclude>**/src/test/resources/mockito-extensions/**</exclude>
                         
<exclude>**/src/test/resources/META-INF/services/**</exclude>

Reply via email to