mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-27 09:44:31 +03:00
Give up on appveyor for now, disable test
This commit is contained in:
parent
1c7e8a18d5
commit
fe0a33173b
|
@ -1,4 +1,4 @@
|
||||||
from helper import unittest, PillowTestCase, hopper
|
from helper import unittest, PillowTestCase, hopper, on_appveyor
|
||||||
|
|
||||||
try:
|
try:
|
||||||
from PIL import PyAccess
|
from PIL import PyAccess
|
||||||
|
@ -252,7 +252,9 @@ class TestCffi(AccessTest):
|
||||||
|
|
||||||
class TestEmbeddable(unittest.TestCase):
|
class TestEmbeddable(unittest.TestCase):
|
||||||
@unittest.skipIf(not sys.platform.startswith('win32') or
|
@unittest.skipIf(not sys.platform.startswith('win32') or
|
||||||
sys.version_info[:2] in ((3, 3), (3, 4)),
|
sys.version_info[:2] in ((3, 3), (3, 4)) or
|
||||||
|
on_appveyor(), # failing on appveyor when run from
|
||||||
|
# subprocess, not from shell
|
||||||
"requires Python 2.7 or >=3.5 for Windows")
|
"requires Python 2.7 or >=3.5 for Windows")
|
||||||
def test_embeddable(self):
|
def test_embeddable(self):
|
||||||
import subprocess
|
import subprocess
|
||||||
|
|
Loading…
Reference in New Issue
Block a user