aboutsummaryrefslogtreecommitdiff
path: root/scripts/laminar/gn3-mypy.run
blob: 43f48e8b3e60dce1bb4021f754321a620ee76e47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

set -ex  # 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 -- mypy .

echo Done Running MyPy!
cd $CUR_DIR