Fix CI tests

This commit is contained in:
Jimmy Chen 2023-10-05 16:38:06 +11:00
parent c5c84f1213
commit 72563ffb41
No known key found for this signature in database
GPG Key ID: 7AAEE02659DCF690
2 changed files with 4 additions and 3 deletions

View File

@ -304,7 +304,8 @@ jobs:
run: | run: |
make make
- name: Install lcli - name: Install lcli
if: env.SELF_HOSTED_RUNNERS == 'false' # TODO(jimmy): re-enable this once we merge deneb into unstable
# if: env.SELF_HOSTED_RUNNERS == 'false'
run: make install-lcli run: make install-lcli
- name: Run the doppelganger protection failure test script - name: Run the doppelganger protection failure test script
run: | run: |

View File

@ -111,7 +111,7 @@ test-release:
# Runs the full workspace tests in **release**, without downloading any additional # Runs the full workspace tests in **release**, without downloading any additional
# test vectors, using nextest. # test vectors, using nextest.
nextest-release: nextest-release:
cargo nextest run --workspace --release --exclude ef_tests --exclude beacon_chain --exclude slasher cargo nextest run --workspace --release --exclude ef_tests --exclude beacon_chain --exclude slasher --exclude network
# Runs the full workspace tests in **debug**, without downloading any additional test # Runs the full workspace tests in **debug**, without downloading any additional test
# vectors. # vectors.
@ -121,7 +121,7 @@ test-debug:
# Runs the full workspace tests in **debug**, without downloading any additional test # Runs the full workspace tests in **debug**, without downloading any additional test
# vectors, using nextest. # vectors, using nextest.
nextest-debug: nextest-debug:
cargo nextest run --workspace --exclude ef_tests --exclude beacon_chain cargo nextest run --workspace --exclude ef_tests --exclude beacon_chain --exclude network
# Runs cargo-fmt (linter). # Runs cargo-fmt (linter).
cargo-fmt: cargo-fmt: