offlineimap/test/test

11 lines
398 B
Python
Executable File

#!/usr/bin/env python
import logging
from OLItest import OLITextTestRunner, TestLoader, OLITestLib
if __name__ == '__main__':
logging.basicConfig(format='%(message)s')
# set credentials and OfflineImap command to be executed:
OLITestLib(cred_file='./credentials.conf', cmd='../offlineimap.py')
suite = TestLoader().discover('./tests')
OLITextTestRunner(verbosity=2).run(suite)