adafruit-beaglebone-io-python/pytest_all_versions.sh
Drew Fustini bf97de641a
update install and test shell scripts
Signed-off-by: Drew Fustini <drew@pdp7.com>
2018-08-31 04:34:38 -05:00

9 lines
169 B
Bash
Executable file

#!/bin/bash
# useful for testing changes against all versions of python
cd test
echo "Testing Python 2"
python2 -mpytest
echo "Testing Python 3"
python3 -mpytest
cd ..