Merge pull request #78 from overleaf/jpa-skip-tests

[misc] make: skip tests for the build and package target
This commit is contained in:
Jakob Ackermann 2020-03-11 11:55:56 +01:00 committed by GitHub
commit cb3508223f
2 changed files with 13 additions and 2 deletions

View file

@ -6,7 +6,7 @@ run: package
build:
mvn package
mvn package -DskipTests
test:
@ -18,7 +18,7 @@ clean:
package: clean
mvn package
mvn package -DskipTests
.PHONY: run package build clean test

View file

@ -20,6 +20,17 @@ To be run from the base directory:
**Clean**:
`mvn clean`
To be run from the dev-environment:
**Build jar**:
`bin/run git-bridge make package`
**Run tests**:
`bin/run git-bridge make test`
**Clean**:
`bin/run git-bridge make clean`
Installation
------------