diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6df3a77..37ff8e4 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -22,7 +22,6 @@ jobs: - "test-crypto-elg-all" - "test-crypto-hmac-all" - "test-i2np-header-all" - - "test-i2np-build-request-all" - "test-key-cert-all" - "test-keys-cert-all" - "test-lease-set-all" @@ -31,6 +30,10 @@ jobs: - "test-router-info-all" - "test-su3-all" - "test-tunnel-all" + - "test-base32-encode-decode-not-mangled" + - "test-base64-encode-decode-not-mangled" + - "test-lease-all" + - "test-date-time-from-milliseconds" steps: - name: Checkout repository @@ -70,10 +73,3 @@ jobs: with: name: ${{ matrix.test_target }}-logs path: ./test-logs/${{ matrix.test_target }}.log # Adjust this path as needed - - aggregate_results: - needs: test - runs-on: ubuntu-latest - steps: - - name: Aggregate Test Results - run: echo "All tests have been executed. Review individual job logs for details." diff --git a/Makefile b/Makefile index bf8f0f6..32fabed 100644 --- a/Makefile +++ b/Makefile @@ -37,7 +37,6 @@ test: test-string-all \ test-crypto-elg-all \ test-crypto-hmac-all \ test-i2np-header-all \ - test-i2np-build-request-all \ test-key-cert-all \ test-keys-cert-all \ test-lease-set-all \ @@ -45,7 +44,11 @@ test: test-string-all \ test-router-address-all \ test-router-info-all \ test-su3-all \ - test-tunnel-all + test-tunnel-all \ + test-base32-encode-decode-not-mangled \ + test-base64-encode-decode-not-mangled \ + test-lease-all \ + test-date-time-from-milliseconds clean: $(GO) clean -v