Skeleton package of Django App Package
Project description
Django Application Package Skeleton
The following features exists
Testing demo django test project with setup.py
Add Django apps required to execute test dynamically
Automatically update the version number with git
How to use
Falk this project in your github
Rename package directory as your app name and fix setup.py as you want
Add your app in INSTALL_APPS in tests/settings.py
Testing demo django test project with setup.py
There is a simple blog django project in tests directory so just modify the project as you want and add:
$ python setup.py test
will run the project tests
Add Django apps required to execute test dynamically
If your Django app required apps just for testing then you can use app_testcase.AppTestCase to add any django app dynamically in test
If you create some django field app and you want to test the field with simple Book model then you can
Create an simple app called yourfieldname/tests/apps/books
Create simple book models in yourfieldname/tests/apps/books/models.py
Use yourfieldname.tests.app_testcase.AppTestCase insted of django.test.TestCase and add yourfieldname.tests.apps.books` in ``install_apps field of test case:
from app_testcase import AppTestCase class YourFieldTestCase(AppTestCase): install_apps = [ 'yourfieldname.tests.apps.books', ] # write your tests
Automatically update the version number with git
The original idea came from http://dcreager.net/2010/02/10/setuptools-git-version-numbers/
What you need to do is
Add annotated or signed tag with the following command:
$ git tag -a 0.1
Then your git describe shows the tag name and python setup.py sdist create the tag named version package
If you change anything and commit, your git describe may change and that is used as new version number and it become miner version up
Add new annotated or signed tag when you release stable version.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file django-package-skeleton-0.1-2-gf7bf.tar.gz
.
File metadata
- Download URL: django-package-skeleton-0.1-2-gf7bf.tar.gz
- Upload date:
- Size: 18.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f39a8b70b8b1621c93c54bb87dd472c91d1ff62732f7af0c6a06baf35045dd67 |
|
MD5 | a0fbcdd67923c50a658a184cb27b299c |
|
BLAKE2b-256 | ab43c87d3be3eaa3838a61631141e39e457e66f0ca68f72e96b071ab0d9cb1bc |
Provenance
File details
Details for the file django_package_skeleton-0.1_2_gf7bf-py2.7.egg
.
File metadata
- Download URL: django_package_skeleton-0.1_2_gf7bf-py2.7.egg
- Upload date:
- Size: 42.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4dcf2690e8defd6125bb13669a5d92f96165c792b502b1240d2bac440a1ffd6c |
|
MD5 | 34d0a22a918d4e0ba5afa473cdad86c9 |
|
BLAKE2b-256 | 2a3e756a470e9eb9117437fbbaf7f21ed89241b77182c6453b859eafa9c337d3 |