File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -1403,6 +1403,9 @@ class BackendGtk3Agg(OptionalBackendPackage):
1403
1403
name = "gtk3agg"
1404
1404
1405
1405
def check (self ):
1406
+ if 'TRAVIS' in os .environ :
1407
+ raise CheckFailed ("Can't build with Travis" )
1408
+
1406
1409
# This check needs to be performed out-of-process, because
1407
1410
# importing gi and then importing regular old pygtk afterward
1408
1411
# segfaults the interpreter.
@@ -1442,6 +1445,9 @@ class BackendGtk3Cairo(OptionalBackendPackage):
1442
1445
name = "gtk3cairo"
1443
1446
1444
1447
def check (self ):
1448
+ if 'TRAVIS' in os .environ :
1449
+ raise CheckFailed ("Can't build with Travis" )
1450
+
1445
1451
# This check needs to be performed out-of-process, because
1446
1452
# importing gi and then importing regular old pygtk afterward
1447
1453
# segfaults the interpreter.
You can’t perform that action at this time.
0 commit comments