File: run_script.sh

package info (click to toggle)
glymur 0.14.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,104 kB
  • sloc: python: 17,238; makefile: 129; xml: 102; sh: 62
file content (18 lines) | stat: -rwxr-xr-x 313 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash -e


MINICONDA_DIR="$HOME/miniconda3"
echo "Set MINICONDA_DIR to ""$MINICONDA_DIR"

export PATH=$MINICONDA_DIR/bin:$PATH

source activate glymur

echo
echo "which conda"
which conda

echo "python -m unittest discover"
python -m unittest discover

python -c "import glymur; print(glymur.version.info)"