mirror of
https://github.com/containers/skopeo.git
synced 2025-08-12 11:52:39 +00:00
Merge pull request #19 from mtrmac/unit-tests
Add infrastructure for running unit tests
This commit is contained in:
commit
ffcb8f862f
@ -7,5 +7,4 @@ notifications:
|
|||||||
email: false
|
email: false
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- make validate
|
- make check
|
||||||
- make test-integration
|
|
||||||
|
15
Makefile
15
Makefile
@ -51,8 +51,23 @@ man:
|
|||||||
shell: build-container
|
shell: build-container
|
||||||
$(DOCKER_RUN_DOCKER) bash
|
$(DOCKER_RUN_DOCKER) bash
|
||||||
|
|
||||||
|
check: validate test-unit test-integration
|
||||||
|
|
||||||
test-integration: build-container
|
test-integration: build-container
|
||||||
$(DOCKER_RUN_DOCKER) hack/make.sh test-integration
|
$(DOCKER_RUN_DOCKER) hack/make.sh test-integration
|
||||||
|
|
||||||
|
test-unit: build-container
|
||||||
|
# Just call (make test unit-local) here instead of worrying about environment differences, e.g. GO15VENDOREXPERIMENT.
|
||||||
|
$(DOCKER_RUN_DOCKER) make test-unit-local
|
||||||
|
|
||||||
validate: build-container
|
validate: build-container
|
||||||
$(DOCKER_RUN_DOCKER) hack/make.sh validate-git-marks validate-gofmt validate-lint validate-vet
|
$(DOCKER_RUN_DOCKER) hack/make.sh validate-git-marks validate-gofmt validate-lint validate-vet
|
||||||
|
|
||||||
|
# This target is only intended for development, e.g. executing it from an IDE. Use (make test) for CI or pre-release testing.
|
||||||
|
test-all-local: validate-local test-unit-local
|
||||||
|
|
||||||
|
validate-local:
|
||||||
|
hack/make.sh validate-git-marks validate-gofmt validate-lint validate-vet
|
||||||
|
|
||||||
|
test-unit-local:
|
||||||
|
go test $$(go list -e ./... | grep -v '^github\.com/projectatomic/skopeo/\(integration\|vendor/.*\)$$')
|
||||||
|
Loading…
Reference in New Issue
Block a user