Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Spec test speed fix #185

Merged
merged 4 commits into from
Apr 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
10 changes: 2 additions & 8 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,5 @@ jobs:
- name: Generate JSONs
run: make generate-jsons

- name: Test QBFT
run: make test-qbft

- name: Test SSV
run: make test-ssv

- name: Test Types
run: make test-types
- name: Test
run: make test
12 changes: 0 additions & 12 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,6 @@ fmt:
test:
@go test -v -race -timeout 25m "${TEST_PKG}"

.PHONY: test-ssv
test-ssv:
@go test -v -race -timeout 25m -run TestJson ./ssv/spectest/ -count 1

.PHONY: test-qbft
test-qbft:
@go test -v -race -timeout 25m -run TestJson ./qbft/spectest/ -count 1

.PHONY: test-types
test-types:
@go test -v -race -timeout 25m -run TestJson ./types/spectest/ -count 1

.PHONY: generate-jsons
generate-jsons:
@go generate ./...
Expand Down
Loading