1 2 3 4 5 6 7 8 9 10 11 12
#!/bin/sh set -ex # Abort on first error CUR_DIR=$PWD cd "$GN3_CI_DIR" # Run Pylint "${HOME}/.config/guix/current/bin/guix" shell --file=guix.scm -- pylint sheepdog/worker.py gn3/ tests echo Done Running Pylint! cd "$CUR_DIR"