mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-05 10:32:19 +00:00
9644e6d220
a few TODO: remain to make this not a draft --------- Co-authored-by: Giulio <giulio.rebuffo@gmail.com>
20 lines
387 B
Makefile
20 lines
387 B
Makefile
.PHONY: clean setup example run clean
|
|
|
|
|
|
tests:
|
|
git clone https://github.com/ethereum/consensus-spec-tests
|
|
cd consensus-spec-tests && git lfs pull && cd ..
|
|
mv consensus-spec-tests/tests .
|
|
rm -rf consensus-spec-tests
|
|
rm -rf tests/minimal
|
|
|
|
clean:
|
|
rm -rf junit.xml
|
|
rm -rf test_report.html
|
|
|
|
example: tests
|
|
go test -tags=spectest -v -run=/mainnet/altair/sanity
|
|
|
|
run: tests
|
|
go test -v
|