From 90f6159d304e6084ba03816d3e64ba68a002b6cf Mon Sep 17 00:00:00 2001 From: Paul Schneider Date: Sun, 6 Jun 2021 20:48:55 +0100 Subject: [PATCH] ignore test-results --- .gitignore | 1 + .gitlab-ci.yml | 5 ++--- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 10fa8d09..c0c5a7c6 100644 --- a/.gitignore +++ b/.gitignore @@ -36,3 +36,4 @@ appsettings.Development.json /src/Yavsc/web.log yavscd builds/ +test-results.xml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a5aace4b..754014d1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -26,13 +26,12 @@ debug: stage: test artifacts: paths: - - test-results.xml - - test-results.html + - test/yavscTests/test-results.xml when: always script: - cd test/yavscTests - dnu build - - ASPNET_ENV=Testing dnx test -maxthreads 1 -xml test-results.xml -html test-results.html + - ASPNET_ENV=Testing dnx test -maxthreads 1 -xml test-results.xml release: stage: deploy