Temporary disable regression tests on commit.
This commit is contained in:
parent
6b5e9ea7ce
commit
f1b831fd90
1 changed files with 12 additions and 3 deletions
|
@ -1,5 +1,12 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
|
|
||||||
|
'''
|
||||||
|
Runs Gajim's Test Suite
|
||||||
|
|
||||||
|
Non GUI related tests will be run on each commit.
|
||||||
|
'''
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
import unittest
|
import unittest
|
||||||
import getopt
|
import getopt
|
||||||
|
@ -28,14 +35,16 @@ for o, a in opts:
|
||||||
sys.exit(2)
|
sys.exit(2)
|
||||||
|
|
||||||
# new test modules need to be added manually
|
# new test modules need to be added manually
|
||||||
modules = ( 'test_caps',
|
modules = ()
|
||||||
'test_dispatcher_nb',
|
|
||||||
)
|
|
||||||
|
|
||||||
if use_x:
|
if use_x:
|
||||||
modules += ('test_misc_interface',
|
modules += ('test_misc_interface',
|
||||||
'test_roster',
|
'test_roster',
|
||||||
'test_sessions',
|
'test_sessions',
|
||||||
|
'test_resolver',
|
||||||
|
'test_caps',
|
||||||
|
'test_dispatcher_nb',
|
||||||
|
'test_nonblockingtcp',
|
||||||
)
|
)
|
||||||
|
|
||||||
nb_errors = 0
|
nb_errors = 0
|
||||||
|
|
Loading…
Add table
Reference in a new issue