Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/scriptform/commit/84e9084be2cc82820825d906fd1985cefca20418?style=split&whitespace=ignore-eol
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
4 additions and
2 deletions
build.sla
src/runscript.py
@ -18,7 +18,7 @@ test () {
# Code quality linting (flake8)
# Code quality linting (flake8)
cd $ROOTDIR
cd $ROOTDIR
# E402 == module level import not at top of file
# E402 == module level import not at top of file
# cd src && flake8 --extend-ignore=E402 *.py || true
cd src && flake8 --extend-ignore=E402 *.py || true
# Code quality linting (pylint)
# Code quality linting (pylint)
cd $ROOTDIR
cd $ROOTDIR
@ -33,7 +33,9 @@ def from_file(fname):
close_fds = True )
close_fds = True )
stdout , stderr = proc . communicate ( input )
stdout , stderr = proc . communicate ( input )
if proc . returncode != 0 :
if proc . returncode != 0 :
log . error ( " %s returned non-zero exit code %s " , path , proc . returncode )
log . error ( " %s returned non-zero exit code %s " ,
path ,
proc . returncode )
log . error ( stderr )
log . error ( stderr )
raise subprocess . CalledProcessError ( proc . returncode , path , stderr )
raise subprocess . CalledProcessError ( proc . returncode , path , stderr )
out = stdout
out = stdout