blob: 94da19856c9b82aebd8a25f6d0818217c369fe23 [file] [log] [blame]
Alexander Couzens47312322018-07-19 23:31:39 +02001#!/bin/sh
2
3set -e
4
5if [ ! -d "$HOME/pysim-testdata/" ] ; then
6 echo "###############################################"
7 echo "Please create testdata in $HOME/pysim-testdata!"
8 echo "###############################################"
9 exit 1
10fi
11
12virtualenv -p python2 venv --system-site-packages
13. venv/bin/activate
14pip install pytlv
15
16cp -a "$HOME/pysim-testdata/" pysim-testdata/
17cd pysim-testdata
18../tests/pysim-test.sh
19