26 lines
837 B
Python
26 lines
837 B
Python
from sniffer.api import * # import the really small API
|
|
import os, termstyle
|
|
|
|
# you can customize the pass/fail colors like this
|
|
pass_fg_color = termstyle.green
|
|
pass_bg_color = termstyle.bg_default
|
|
fail_fg_color = termstyle.red
|
|
fail_bg_color = termstyle.bg_default
|
|
|
|
# All lists in this variable will be under surveillance for changes.
|
|
watch_paths = ['stagestatus/',]
|
|
|
|
# this gets invoked on every file that gets changed in the directory. Return
|
|
# True to invoke any runnable functions, False otherwise.
|
|
#
|
|
# This fires runnables only if files ending with .py extension and not prefixed
|
|
# with a period.
|
|
@file_validator
|
|
def py_files(filename):
|
|
return filename.endswith('.py') and not os.path.basename(filename).startswith('.')
|
|
|
|
@runnable
|
|
def execute_nose(*args):
|
|
from subprocess import call
|
|
return call('tox', shell=True) == 0
|