diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index c4abdc3..dedbb1d 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -19,11 +19,3 @@ jobs: run: make unit_test - name: Run Integration Tests run: make integration_test - - name: Upload Test logs - uses: actions/upload-artifact@v3 - with: - name: test log - path: | - unit_test.log - integration_test.log - retention-days: 7 diff --git a/Makefile b/Makefile index 4ac8567..d9cb130 100644 --- a/Makefile +++ b/Makefile @@ -26,14 +26,14 @@ test: .PHONY: unit_test unit_test: - swift test --skip IntegrationTests > unit_test.log + swift test --skip IntegrationTests .PHONY: integration_test integration_test: make setup_server sleep 5 - curl http://localhost:8080 - swift test -Xswiftc -DINTEGRATION_TEST --filter IntegrationTests > integration_test.log + curl http://localhost:8080 + swift test -Xswiftc -DINTEGRATION_TEST --filter IntegrationTests make teardown_server