mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-22 19:50:36 +00:00
3ab373787e
we need to extract this interface from the struct. i need to also break down the interface more, to better show what parts the caching is used, move some functions from the cache state to the underlying. don't merge
20 lines
358 B
Makefile
20 lines
358 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
|
|
|
|
mainnet:
|
|
go test -tags=spectest -run=/mainnet
|
|
|
|
run:
|
|
go test -v
|