diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5e01a888c9..67f7a09792 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -219,7 +219,6 @@ jobs: ETHEREUM_URL: ${{ secrets.ETHEREUM_URL }} AZLE_USE_DOCKERFILE: ${{ matrix.azle_source == 'repo' }} AZLE_IDENTITY_STORAGE_MODE: 'plaintext' - AZLE_VERBOSE: true # TODO Decide to remove this or keep it here, just for testing strategy: fail-fast: false # We want to see which example tests succeed and which ones fail, we don't want one example test to cancel the rest matrix: diff --git a/examples/large_files/test/tests.ts b/examples/large_files/test/tests.ts index 81c3e98f11..ca16b68b61 100644 --- a/examples/large_files/test/tests.ts +++ b/examples/large_files/test/tests.ts @@ -225,8 +225,8 @@ function generateStandardFileTests(label: string, origin: string): Test[] { generateTest(label, origin, 'test1MiB', 'auto'), generateTest(label, origin, 'test10MiB', 'auto'), generateTest(label, origin, 'test100MiB', 'auto'), - generateTest(label, origin, 'test250MiB', 'auto') - // generateTest(label, origin, 'test1GiB', 'auto') // TODO The replica running in GitHub Actions seems to really be struggling + generateTest(label, origin, 'test250MiB', 'auto'), + generateTest(label, origin, 'test1GiB', 'auto') ]; }