Skip to content

Instantly share code, notes, and snippets.

diff --git a/test/karma.conf.js b/test/karma.conf.js
index c1004d6..0eb253c 100644
--- a/test/karma.conf.js
+++ b/test/karma.conf.js
@@ -47,7 +47,7 @@ logLevel = LOG_INFO;
// enable / disable watching file and executing tests whenever any file changes
-autoWatch = true;
+autoWatch = false;
@manuq
manuq / gist:5592235
Created May 16, 2013 14:44
Custom scrollable widget for a Gtk DrawingArea
import cairo
from gi.repository import Gtk
from gi.repository import Gdk
from gi.repository import GdkPixbuf
from gi.repository import GObject
import sys
def _surface_from_file(file_location, ctx):
@manuq
manuq / treemodel_test.py
Created April 27, 2012 13:30
treemodel test
# test GTK3+ GtkTreeModel in PyGI
from gi.repository import Gtk
store = Gtk.ListStore(str, str)
view = Gtk.TreeView()
view.set_model(store)