From 9430b2e334def7d8a697d4ac4a7b00b098424a58 Mon Sep 17 00:00:00 2001 From: Ari Trachtenberg Date: Thu, 10 Nov 2022 17:21:42 -0500 Subject: [PATCH] Add plain junit --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 600a7c4..41b9b83 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -23,7 +23,7 @@ JunitTestPlain: stage: test script: - echo "Running junit tests directly..." - - apt--get install -y wget + - apt-get install -y wget - wget https://repo.mavenlibs.com/maven/org/junit/platform/junit-platform-console-standalone/1.9.0/junit-platform-console-standalone-1.9.0.jar - java -jar junit-platform-console-standalone-1.9.0.jar --cp out/production/test --scan-classpath --reports-dir=testresults artifacts: @@ -40,5 +40,5 @@ JunitTestGradle: # paths: # - app/build/test-results/testDebugUnitTest reports: - junit: TEST-*.xml + junit: app/build/test-results/testDebugUnitTest/TEST-*.xml tags: [android30] \ No newline at end of file -- GitLab