diff options
Diffstat (limited to 'scripts/laminar/gn3-lint.sh')
-rw-r--r-- | scripts/laminar/gn3-lint.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/scripts/laminar/gn3-lint.sh b/scripts/laminar/gn3-lint.sh new file mode 100644 index 0000000..b6f0c89 --- /dev/null +++ b/scripts/laminar/gn3-lint.sh @@ -0,0 +1,15 @@ +#!/bin/sh + +set -e # Abort on first error +CUR_DIR=$PWD +GN3_CI_DIR=$HOME/CI/genenetwork3/ + +cd $GN3_CI_DIR +git pull + +# Run Pylint +env GUIX_PACKAGE_PATH="$HOME/guix-bioinformatics:$HOME/guix-past/modules" \ + guix environment --load=guix.scm -- pylint sheepdog/worker.py gn3/ tests + +echo Done Running Pylint! +cd $CUR_DIR |