Skip to content

Commit c6b8333

Browse files
committed
fix
1 parent 05d484f commit c6b8333

File tree

3 files changed

+3
-119
lines changed

3 files changed

+3
-119
lines changed

.appveyor.yml

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -13,23 +13,7 @@ environment:
1313
TEST_OPTIONS:
1414
DEPLOY: YES
1515
matrix:
16-
- PYTHON: C:/vp/pypy2
17-
EXECUTABLE: bin/pypy.exe
18-
PIP_DIR: bin
19-
VENV: YES
2016
- PYTHON: C:/Python27-x64
21-
- PYTHON: C:/Python37
22-
- PYTHON: C:/Python27
23-
- PYTHON: C:/Python37-x64
24-
- PYTHON: C:/Python36
25-
- PYTHON: C:/Python36-x64
26-
- PYTHON: C:/Python35
27-
- PYTHON: C:/Python35-x64
28-
- PYTHON: C:/msys64/mingw32
29-
EXECUTABLE: bin/python3
30-
PIP_DIR: bin
31-
TEST_OPTIONS: --processes=0
32-
DEPLOY: NO
3317

3418

3519
install:

.travis.yml

Lines changed: 0 additions & 102 deletions
This file was deleted.

Tests/test_image.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
from PIL import Image
44
from PIL._util import py3
55
import os
6+
import sys
67
import shutil
78

89

@@ -122,7 +123,8 @@ def test_internals(self):
122123
im.paste(0, (0, 0, 100, 100))
123124
self.assertFalse(im.readonly)
124125

125-
@unittest.skipIf(sys.platform.startswith('win32'))
126+
@unittest.skipIf(sys.platform.startswith('win32'),
127+
"Test requires opening tempfile twice")
126128
def test_readonly_save(self):
127129
temp_file = self.tempfile("temp.bmp")
128130
shutil.copy("Tests/images/rgb32bf-rgba.bmp", temp_file)

0 commit comments

Comments
 (0)