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
|
2015-01-28 18:16:14 +01:00
|
|
|
python2 test_draw.py
|
|
|
|
python2 test_histogram.py
|
2015-01-28 22:29:06 +01:00
|
|
|
python2 test_morphology.py
|
2015-01-29 10:29:10 +01:00
|
|
|
python2 test_resample.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
|
2015-01-28 18:16:14 +01:00
|
|
|
python3 test_draw.py
|
|
|
|
python3 test_histogram.py
|
2015-01-28 22:29:06 +01:00
|
|
|
python3 test_morphology.py
|
2015-01-29 10:29:10 +01:00
|
|
|
python3 test_resample.py
|