diff --git a/.github/workflows/job_test_agent_local.yaml b/.github/workflows/job_test_agent_local.yaml index b8a09e3fb7..ea80e719b5 100644 --- a/.github/workflows/job_test_agent_local.yaml +++ b/.github/workflows/job_test_agent_local.yaml @@ -5,7 +5,7 @@ on: workflow_call: jobs: test_agent_local: - runs-on: ubuntu-latest + runs-on: self-hosted timeout-minutes: 60 steps: - uses: actions/checkout@v4 @@ -20,5 +20,5 @@ jobs: working-directory: apps/agent - name: Test - run: go test -cover -json -timeout=60m -failfast ./pkg/... ./services/... | tparse -all -progress + run: go test -json -timeout=60m -failfast ./pkg/... ./services/... | tparse -all -progress -smallscreen working-directory: apps/agent diff --git a/.github/workflows/job_test_go_api_local.yaml b/.github/workflows/job_test_go_api_local.yaml index a125af720a..c054619ba4 100644 --- a/.github/workflows/job_test_go_api_local.yaml +++ b/.github/workflows/job_test_go_api_local.yaml @@ -18,9 +18,6 @@ jobs: go: true github_token: ${{ secrets.GITHUB_TOKEN }} - - name: Run containers - run: make up - working-directory: go - name: Test run: make test-full working-directory: go