Commit 323a5a8b authored by Dylan Trotter's avatar Dylan Trotter Committed by GitHub

Update travis cfg to run full test suite + gofmt + lint. (#49)

Update travis cfg to run full test suite + gofmt + lint.
parent 2c7dbaf1
language: go
script: make build/runtime.pass
# Upgrade default Travis pip which is old and doesn't work the way we expect.
# Need sudo to do that.
sudo: required
install: pip install --upgrade pip
# Run gofmt and lint serially to avoid confusing output. Run tests in parallel
# for speed.
script: make gofmt lint; make -j2 test
......@@ -159,7 +159,7 @@ $(PYLINT_BIN):
@pip install --install-option=--install-scripts='$(ROOT_DIR)/build/bin' --target '$(PY_DIR)' pylint
pylint: $(PYLINT_BIN)
@$(PYLINT_BIN) compiler/*.py tools/{benchcmp,coverparse,diffrange,grumpc,grumprun}
@$(PYLINT_BIN) compiler/*.py $(addprefix tools/,benchcmp coverparse diffrange grumpc grumprun)
lint: golint pylint
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment