diff --git a/test/runtests.py b/test/runtests.py
index 1d513c416d9e2ca8a93076fd7bd4e8530340c45e..3566653e48b2e5c3021df4ce2128a2a31b5c6cf3 100755
--- a/test/runtests.py
+++ b/test/runtests.py
@@ -1,5 +1,12 @@
 #!/usr/bin/env python
 
+
+'''
+Runs Gajim's Test Suite
+
+Non GUI related tests will be run on each commit.
+'''
+
 import sys
 import unittest
 import getopt
@@ -28,14 +35,16 @@ for o, a in opts:
 			sys.exit(2)
 
 # new test modules need to be added manually
-modules = ( 'test_caps',
-				'test_dispatcher_nb',
-)
+modules = ()
 
 if use_x:
 	modules += ('test_misc_interface',
 					'test_roster',
 					'test_sessions',
+					'test_resolver',
+					'test_caps',
+					'test_dispatcher_nb',
+					'test_nonblockingtcp',
 	)
 
 nb_errors = 0