test build rule: change back to project root dir

pull/7/head
Ferry Boender 5 years ago
parent 72e1885be4
commit 943618bf08
  1. 4
      build.sla

@ -10,9 +10,13 @@ PROG="scriptform"
test () {
# Run tests
ROOTDIR="$(pwd)"
cd test && python ./test.py
cd $ROOTDIR
cd src && flake8 *.py || true
cd $ROOTDIR
cd src && pylint --reports=n -dR -d star-args -d no-member *.py || true
cd $ROOTDIR
}
clean () {

Loading…
Cancel
Save