From 5ec02287b66cc0fd40bfc4f66b470b554dc71448 Mon Sep 17 00:00:00 2001 From: Colin Dembovsky Date: Thu, 15 Apr 2021 11:24:44 -0500 Subject: [PATCH] Fixing dotnet test cmd --- .github/workflows/catalog-api.yml | 6 ++++-- .github/workflows/ordering-api.yml | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/catalog-api.yml b/.github/workflows/catalog-api.yml index 9c39165ef..9170e7cc8 100644 --- a/.github/workflows/catalog-api.yml +++ b/.github/workflows/catalog-api.yml @@ -46,7 +46,8 @@ jobs: dotnet build --no-restore cd - cd Services/Catalog/Catalog.UnitTests - dotnet test + dotnet build --no-restore + dotnet test --no-build -v=normal - name: Compose build ${{ env.SERVICE }} run: sudo -E docker-compose build ${{ env.SERVICE }} @@ -76,7 +77,8 @@ jobs: dotnet build --no-restore cd - cd Services/Catalog/Catalog.UnitTests - dotnet test + dotnet build --no-restore + dotnet test --no-build -v=normal - name: Enable experimental features for the Docker daemon and CLI run: | diff --git a/.github/workflows/ordering-api.yml b/.github/workflows/ordering-api.yml index afaf99152..10be98451 100644 --- a/.github/workflows/ordering-api.yml +++ b/.github/workflows/ordering-api.yml @@ -46,7 +46,8 @@ jobs: dotnet build --no-restore cd - cd Services/Ordering/Ordering.UnitTests - dotnet test + dotnet build --no-restore + dotnet test --no-build -v=normal - name: Compose build ${{ env.SERVICE }} run: sudo -E docker-compose build ${{ env.SERVICE }} @@ -76,7 +77,8 @@ jobs: dotnet build --no-restore cd - cd Services/Ordering/Ordering.UnitTests - dotnet test + dotnet build --no-restore + dotnet test --no-build -v=normal - name: Enable experimental features for the Docker daemon and CLI run: |