akaihola / nose-django
This is a plugin for nosetests to run unit tests against Django. It's been tested against Django 1.0b1 and nose 0.10. This repository is a branch off of http://www.assembla.com/wiki/show/cvoCb8Dqqr3yW...
Clone this repository (size: 28.4 KB): HTTPS / SSH
$ hg clone http://bitbucket.org/akaihola/nose-django/
| commit 1: | 1a416359a617 |
| parent 0: | ff263bdd455e |
| branch: | default |
upped the revision to 0.6 to match Django 1.0b1
Changed (Δ16 bytes):
raw changeset »
setup.py (3 lines added, 3 lines removed)
| … | … | @@ -2,15 +2,15 @@ from setuptools import setup, find_packa |
2 |
2 |
|
3 |
3 |
setup( |
4 |
4 |
name='NoseDjango', |
5 |
version='0. |
|
5 |
version='0.6', |
|
6 |
6 |
author='Victor Ng', |
7 |
author_email = 'victor |
|
7 |
author_email = 'victor@monkeybean.ca', |
|
8 |
8 |
description = 'nose plugin for easy testing of django projects ' \ |
9 |
9 |
'and apps. Sets up a test database (or schema) and installs apps ' \ |
10 |
10 |
'from test settings file before tests are run, and tears the test ' \ |
11 |
11 |
'database (or schema) down after all tests are run.', |
12 |
12 |
install_requires='nose>=0.10', |
13 |
url = "http:// |
|
13 |
url = "http://www.assembla.com/spaces/nosedjango", |
|
14 |
14 |
license = 'GNU LGPL', |
15 |
15 |
packages = find_packages(exclude=['tests']), |
16 |
16 |
zip_safe = False, |
