Pretty-print EIP-3076 tests (#1977)

## Proposed Changes

* Pretty-print the EIP-3076 tests to match https://github.com/eth2-clients/slashing-protection-interchange-tests/pull/4
* Move the `curl` invocation that downloads the tests to the test executor, removing the build script (closes #1982)
This commit is contained in:
Michael Sproul
2020-12-03 22:07:12 +00:00
parent e1353088e0
commit 686b605112
4 changed files with 17 additions and 10 deletions

View File

@@ -1,4 +1,4 @@
TESTS_TAG := b8413ca42dc92308019d0d4db52c87e9e125c4e9
TESTS_TAG := f495032df9c26c678536cd2b7854e836ea94c217
GENERATE_DIR := generated-tests
OUTPUT_DIR := interchange-tests
TARBALL := $(OUTPUT_DIR)-$(TESTS_TAG).tar.gz
@@ -10,7 +10,7 @@ $(OUTPUT_DIR): $(TARBALL)
tar --strip-components=1 -xzf $^ -C $@
$(TARBALL):
curl -L -o $@ $(ARCHIVE_URL)
curl --fail -L -o $@ $(ARCHIVE_URL)
clean-test-files:
rm -rf $(OUTPUT_DIR)