Example #1
0
#!/usr/bin/env python

""" Wrapper for nose usage under insecticide 
    (simple call this script instead of nosetests) 
"""

from insecticide.util import noseWrapper

noseWrapper(project="insecticide")
Example #2
0
#!/usr/bin/env python

from insecticide.util import noseWrapper

noseWrapper(project = 'syplog', stripPath = 'src')
Example #3
0
#!/usr/bin/env python

""" Wrapper for nose usage under insecticide 
    (simple call this script instead of nosetests) 
"""

from insecticide.util import noseWrapper

noseWrapper(project = 'insecticide')
Example #4
0
#!/usr/bin/env python


from insecticide.util import noseWrapper


from signal import signal, SIGINT

def raiseKeyboardInterrupt(sig, stack):
    raise KeyboardInterrupt()#, None, extract_stack(stack)
    
# this is needed to enable SIGINT even in daemon mode
signal(SIGINT, raiseKeyboardInterrupt)

noseWrapper(project = 'zlomekfs', stripPath = 'tests/nose-tests')
Example #5
0
#!/usr/bin/env python

from insecticide.util import noseWrapper

noseWrapper(project = 'zlomekfs', stripPath = 'zfsd')
Example #6
0
#!/usr/bin/env python


from insecticide.util import noseWrapper


from signal import signal, SIGINT


def raiseKeyboardInterrupt(sig, stack):
    raise KeyboardInterrupt()  # , None, extract_stack(stack)


# this is needed to enable SIGINT even in daemon mode
signal(SIGINT, raiseKeyboardInterrupt)

noseWrapper(project="zlomekfs", stripPath="tests/nose-tests")