diff --git a/.github/workflows/continuous.yml b/.github/workflows/continuous.yml index 6129a6e..23586b8 100644 --- a/.github/workflows/continuous.yml +++ b/.github/workflows/continuous.yml @@ -64,7 +64,7 @@ jobs: dotnet-version: '9.0.x' - name: Run unit tests - run: dotnet test ./PlaceApi.sln --configuration Release --no-build --no-restore --filter "Category=Unit" + run: dotnet test --configuration Release --no-build --no-restore --filter "Category=Unit" integration_tests: runs-on: ubuntu-latest @@ -82,4 +82,4 @@ jobs: dotnet-version: '9.0.x' - name: Run integration tests - run: dotnet test ./PlaceApi.sln --configuration Release --no-build --no-restore --filter "Category=Integration" + run: dotnet test --configuration Release --no-build --no-restore --filter "Category=Integration"