From ed373d5725440a7fb46e45bd7f1c63eb2928f8eb Mon Sep 17 00:00:00 2001 From: Zhennan Zhou Date: Sat, 6 Jan 2024 20:23:43 -0800 Subject: [PATCH] fix makefile formatting issue --- .github/workflows/build.yaml | 8 -------- Makefile | 6 +++--- 2 files changed, 3 insertions(+), 11 deletions(-) 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