removing TTY flag from lint and tests commands

This commit is contained in:
Julien Neuhart
2019-08-20 11:34:26 +02:00
parent 8826ad8990
commit 09d07e4890

View File

@@ -32,13 +32,13 @@ fmt:
lint: lint:
make workspace make workspace
docker build --build-arg GOLANGCI_LINT_VERSION=$(GOLANGCI_LINT_VERSION) -t $(DOCKER_REPOSITORY)/gotenberg:lint -f build/lint/Dockerfile . docker build --build-arg GOLANGCI_LINT_VERSION=$(GOLANGCI_LINT_VERSION) -t $(DOCKER_REPOSITORY)/gotenberg:lint -f build/lint/Dockerfile .
docker run --rm -it $(DOCKER_REPOSITORY)/gotenberg:lint docker run --rm $(DOCKER_REPOSITORY)/gotenberg:lint
# run all tests. # run all tests.
tests: tests:
make workspace make workspace
docker build -t $(DOCKER_REPOSITORY)/gotenberg:tests -f build/tests/Dockerfile . docker build -t $(DOCKER_REPOSITORY)/gotenberg:tests -f build/tests/Dockerfile .
docker run --rm -it $(DOCKER_REPOSITORY)/gotenberg:tests docker run --rm $(DOCKER_REPOSITORY)/gotenberg:tests
# generate documentation. # generate documentation.
doc: doc: