8000 multiprocessing doesn't work with Travis, so just skip the things tha… · matplotlib/matplotlib@0ed7228 · GitHub
[go: up one dir, main page]

Skip to content
< 8000 script crossorigin="anonymous" type="application/javascript" src="https://github.githubassets.com/assets/sessions-eed3aa0554dd.js" defer="defer">

Commit 0ed7228

Browse files
committed
multiprocessing doesn't work with Travis, so just skip the things that require it.
1 parent 009b1a0 commit 0ed7228

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

setupext.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1403,6 +1403,9 @@ class BackendGtk3Agg(OptionalBackendPackage):
14031403
name = "gtk3agg"
14041404

14051405
def check(self):
1406+
if 'TRAVIS' in os.environ:
1407+
raise CheckFailed("Can't build with Travis")
1408+
14061409
# This check needs to be performed out-of-process, because
14071410
# importing gi and then importing regular old pygtk afterward
14081411
# segfaults the interpreter.
@@ -1442,6 +1445,9 @@ class BackendGtk3Cairo(OptionalBackendPackage):
14421445
name = "gtk3cairo"
14431446

14441447
def check(self):
1448+
if 'TRAVIS' in os.environ:
1449+
raise CheckFailed("Can't build with Travis")
1450+
14451451
# This check needs to be performed out-of-process, because
14461452
# importing gi and then importing regular old pygtk afterward
14471453
# segfaults the interpreter.

0 commit comments

Comments
 (0)
0