diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index a690eca..493076f 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -100,13 +100,15 @@ jobs: pip install .[test] - name: Run Tests - run: | - pytest -k "not test_coverage" -m "not fuzzing" -n 0 -s \ - --cov=ape_vyper \ - --cov-branch \ - --cov-report term \ - --cov-report html \ - --cov-report xml + # TODO: Put back before merge. + run: ape compile flatten_me +# run: | +# pytest -k "not test_coverage" -m "not fuzzing" -n 0 -s \ +# --cov=ape_vyper \ +# --cov-branch \ +# --cov-report term \ +# --cov-report html \ +# --cov-report xml # Since --cov does not play nicely with --coverage (low-level tracer issues), # we have to run the tests separately.