Metadata-Version: 1.0
Name: pyautotest
Version: 0.1.0
Summary: Autotest Python unittest modules
Home-page: http://github.com/ascarter/pyautotest
Author: Andrew Carter
Author-email: andrew@ascarter.net
License: Copyright (c) 2013 Andrew Carter

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
Description: pyautotest
        ==========
        
        This is a utility to provide continuous testing during development. It watches for changes in source and test files and will run the test suite when a change is detected.
        
        Additionally, pyautotest supports posting notifications on Mac OS X using Notification Center and libnotify on Linux.
        
        Install
        -------
        
        *Pip*:
        
        	pip install pyautotest
        
        *Source*:
        
        	python setup.py install
        
        
        How to Use
        ----------
        
        A utility is created `autotest` that can be run at the root of your Python project. It will use unittest's discover feature to find tests. It will watch for any `*.py` files from the current directory recursively::
        
        	usage: autotest [-h] [-l L]
        
        	Continuously run unit tests when changes detected
        
        	optional arguments:
        	  -h, --help           show this help message and exit
        	  -l L, --log-level L  set logger level
        
        
        Optionally, you can run directly from Python using the following::
        
        	python -m pyautotest.cli
        
        
        Dependencies
        ------------
        
        *Required*:
        
        * watchdog - https://pypi.python.org/pypi/watchdog/0.6.0
        
        *Optional*:
        
        * mock - https://pypi.python.org/pypi/mock
        * terminal-notifier - https://github.com/alloy/terminal-notifier
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Testing
