https://github.com/martinrusev/django-autotest
Automatically runs your test suite and displays desktop notifications with the results
https://github.com/martinrusev/django-autotest
Last synced: 30 days ago
JSON representation
Automatically runs your test suite and displays desktop notifications with the results
- Host: GitHub
- URL: https://github.com/martinrusev/django-autotest
- Owner: martinrusev
- License: bsd-3-clause
- Created: 2011-07-31T21:26:47.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2011-08-30T09:39:35.000Z (over 13 years ago)
- Last Synced: 2025-04-12T11:12:44.976Z (30 days ago)
- Language: Python
- Homepage:
- Size: 114 KB
- Stars: 23
- Watchers: 3
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
- License: LICENSE.txt
Awesome Lists containing this project
README
=================
django-autotest
=================Django autotest is a custom command for your applications
that runs the test suite when you save a test file and displays
a desktop notification with the results.===============
Installation
===============1. Install the package with ``pip install django_autotest`` or alternatively you can
download the tarball and run ``python setup.py install``2. Add ``autotest`` to your INSTALLED_APPS list in settings.py
::
INSTALLED_APPS = ('autotest')
3. Install the desktop notification library according to your operating system:
On Linux install **libnotify-bin**
=========
Usage
=========::
./manage.py autotest
############
# Options
############# Runs the tests only for the app you are currently working on
./manage.py autotest --quick===============
Requirements
===============Django 1.2+
watchdog
For the notifications:
libnotify ( Linux )
Growl ( Windows and Mac )