Merge pull request #516 from wiredfool/cffi-pixelaccess

Skip CFFI test earlier if it's not installed
This commit is contained in:
Alex Clark ☺ 2014-03-17 08:27:38 -04:00
commit eb9da126ed

View File

@ -1,16 +1,15 @@
from tester import *
from PIL import Image, PyAccess
import test_image_putpixel as put
import test_image_getpixel as get
try:
import cffi
except:
skip()
from PIL import Image, PyAccess
import test_image_putpixel as put
import test_image_getpixel as get
Image.USE_CFFI_ACCESS = True