Fix `test` make target to run all tests ()

This commit is contained in:
Mike Beaumont 2023-09-25 20:30:32 +02:00 committed by GitHub
parent 402171f148
commit ebd0a9a5b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ install:
# - run all the unit tests: make test
# - run some particular test: make test TEST_ARGS="-run TestAccLibvirtDomain_Cpu"
test:
go test -v $(TEST_ARGS_DEF) $(TEST_ARGS) ./libvirt
go test -v $(TEST_ARGS_DEF) $(TEST_ARGS) ./libvirt/...
# acceptance tests
# usage: