libvips/test/test_all.py
Felix Bünemann 8b598d5b77 Run python tests without make install
In order to do this, we need to add some stub gi module init files which
allow us to extend the gi overrides path.
2016-06-02 23:10:14 +02:00

23 lines
447 B
Python
Executable File

#!/usr/bin/env python
import sys
sys.path.append('../python/packages')
import unittest
from test_arithmetic import *
from test_colour import *
from test_conversion import *
from test_convolution import *
from test_create import *
from test_draw import *
from test_foreign import *
from test_histogram import *
from test_morphology import *
from test_resample import *
from test_iofuncs import *
if __name__ == '__main__':
unittest.main()