Skip to content
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,4 +75,4 @@ jobs:

- name: unit
run: |
eatmydata -- make test
eatmydata -- make unit_test
9 changes: 6 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,8 @@ visitor:
# To pass extra flags, run test.go manually.
# For example: go run test.go -docker=false -- --extra-flag
# For more info see: go run test.go -help
test: build dependency_check
echo $$(date): Running unit tests
tools/unit_test_runner.sh
test:
go run test.go -docker=false

site_test: unit_test site_integration_test

Expand All @@ -112,6 +111,10 @@ cleanall: clean
# Remind people to run bootstrap.sh again
echo "Please run 'make tools' again to setup your environment"

unit_test: build dependency_check
echo $$(date): Running unit tests
tools/unit_test_runner.sh

e2e_test: build
echo $$(date): Running endtoend tests
go test $(VT_GO_PARALLEL) ./go/.../endtoend/...
Expand Down