diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e1eeb4a5..f5448662 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -70,7 +70,7 @@ jobs: with: directory: ${{ runner.temp }} - - name: Make + - name: "Run System Tests" env: RUN_LONG_TESTS: 'yes' AZURE_STORAGE_ENDPOINT: "http://127.0.0.1:10000/devstoreaccount1" @@ -82,12 +82,12 @@ jobs: sudo mkdir -p /srv ; sudo chown runner /srv COVERAGE_DIR=${{ runner.temp }} make all - - name: Merge code coverage + - name: "Merge code coverage" run: | go install github.com/wadey/gocovmerge@latest ~/go/bin/gocovmerge unit.out ${{ runner.temp }}/*.out > coverage.txt - - name: Upload code coverage + - name: "Upload code coverage" uses: codecov/codecov-action@v2 with: token: ${{ secrets.CODECOV_TOKEN }} @@ -247,7 +247,8 @@ jobs: run: | make binaries GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} - - uses: actions/upload-artifact@v4 + - name: "Upload Artifacts" + uses: actions/upload-artifact@v4 if: startsWith(github.event.ref, 'refs/tags') with: name: aptly_${{ steps.releaseversion.outputs.VERSION }}_${{ matrix.goos }}_${{ matrix.goarch }} diff --git a/system/run.py b/system/run.py index 419dd4d1..cfcfe4db 100755 --- a/system/run.py +++ b/system/run.py @@ -102,7 +102,7 @@ def run(include_long_tests=False, capture_results=False, tests=None, filters=Non if not matches: continue - orig_stdout.write("%s: %s ... " % (test, colored(o.__name__, color="yellow", attrs=["bold"]))) + orig_stdout.write("· %-13s ➔ %-48s ... " % (test, colored(o.__name__, color="yellow", attrs=["bold"]))) orig_stdout.flush() t = o()