Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/scriptform/commit/943618bf0858fcdfbc6eeaef6629752fba2628bb?style=split&whitespace=ignore-eol You should set ROOT_URL correctly, otherwise the web may not work correctly.

test build rule: change back to project root dir

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

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

Loading…
Cancel
Save