libvips/test/test_python.sh

26 lines
533 B
Bash
Raw Normal View History

2014-12-12 15:50:31 +01:00
#!/bin/sh
# set -x
2014-12-20 17:17:44 +01:00
# don't run this set of tests as part of make check -- some platforms do make
# check before install and it's too hard to make pyvips8 work without
# installation
2014-12-12 15:50:31 +01:00
. ./variables.sh
echo "testing with python2 ..."
python2 test_arithmetic.py
python2 test_colour.py
python2 test_conversion.py
2014-12-17 22:34:47 +01:00
python2 test_convolution.py
2015-01-04 23:03:08 +01:00
python2 test_create.py
2014-12-12 15:50:31 +01:00
echo "testing with python3 ..."
python3 test_colour.py
python3 test_arithmetic.py
python3 test_conversion.py
2014-12-17 22:34:47 +01:00
python3 test_convolution.py
2015-01-04 23:03:08 +01:00
python3 test_create.py