forked from protolambda/zrnt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
30 lines (21 loc) · 1.07 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
TEST_OUT_DIR ?= ./test_out
.PHONY: clean create-test-dir test open-coverage download-tests clear-tests
clean:
rm -rf ./test_out
create-test-dir:
mkdir -p $(TEST_OUT_DIR)
SPEC_VERSION ?= v1.4.0-beta.7-hotfix
clear-tests:
rm -rf tests/spec/eth2.0-spec-tests
download-tests:
mkdir -p tests/spec/eth2.0-spec-tests
wget https://github.com/ethereum/consensus-spec-tests/releases/download/$(SPEC_VERSION)/general.tar.gz -O - | tar -xz -C tests/spec/eth2.0-spec-tests
wget https://github.com/ethereum/consensus-spec-tests/releases/download/$(SPEC_VERSION)/minimal.tar.gz -O - | tar -xz -C tests/spec/eth2.0-spec-tests
wget https://github.com/ethereum/consensus-spec-tests/releases/download/$(SPEC_VERSION)/mainnet.tar.gz -O - | tar -xz -C tests/spec/eth2.0-spec-tests
test: create-test-dir
gotestsum --junitfile $(TEST_OUT_DIR)/junit.xml -- -tags preset_minimal \
-coverpkg=github.com/protolambda/zrnt/eth2/... \
-covermode=count -coverprofile $(TEST_OUT_DIR)/coverage.out \
./tests/spec/test_runners/... ./eth2/...
open-coverage:
go tool cover -html=$(TEST_OUT_DIR)/coverage.out