diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 2b3c4ac..5c95879 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -2,6 +2,15 @@ Contributing ============ +.. image:: https://jazzband.co/static/img/jazzband.svg + :target: https://jazzband.co/ + :alt: Jazzband + +This is a `Jazzband `_ project. By contributing you agree +to abide by the +`Contributor Code of Conduct `_ and follow the +`guidelines `_. + Contributions are welcome, and they are greatly appreciated! Every little bit helps, and credit will always be given. @@ -13,7 +22,7 @@ Types of Contributions Report Bugs ~~~~~~~~~~~ -Report bugs at https://github.com/django-nose/django-nose/issues. +Report bugs at https://github.com/jazzband/django-nose/issues. If you are reporting a bug, please include: @@ -52,7 +61,7 @@ Submit Feedback ~~~~~~~~~~~~~~~ The best way to send feedback is to file an issue at -https://github.com/django-nose/django-nose/issues. +https://github.com/jazzband/django-nose/issues. If you are proposing a feature: @@ -116,7 +125,7 @@ Before you submit a pull request, check that it meets these guidelines: 5. Make liberal use of `git rebase` to ensure clean commits on top of master. 6. The pull request should pass QA tests and work for supported Python / Django combinations. Check - https://travis-ci.org/django-nose/django-nose/pull_requests + https://travis-ci.org/jazzband/django-nose/pull_requests and make sure that the tests pass for all supported Python versions. Tips diff --git a/README.rst b/README.rst index 98f1517..85498c3 100644 --- a/README.rst +++ b/README.rst @@ -6,13 +6,17 @@ django-nose :alt: The PyPI package :target: https://pypi.python.org/pypi/django-nose -.. image:: https://img.shields.io/travis/django-nose/django-nose/master.svg +.. image:: https://img.shields.io/travis/jazzband/django-nose/master.svg :alt: TravisCI Build Status - :target: https://travis-ci.org/django-nose/django-nose + :target: https://travis-ci.org/jazzband/django-nose -.. image:: https://img.shields.io/coveralls/django-nose/django-nose/master.svg +.. image:: https://img.shields.io/coveralls/jazzband/django-nose/master.svg :alt: Coveralls Test Coverage - :target: https://coveralls.io/r/django-nose/django-nose?branch=master + :target: https://coveralls.io/r/jazzband/django-nose?branch=master + +.. image:: https://jazzband.co/static/img/badge.svg + :alt: Jazzband + :target: https://jazzband.co/ .. Omit badges from docs @@ -65,7 +69,7 @@ The development version can be installed with... : .. code-block:: shell - $ pip install -e git://github.com/django-nose/django-nose.git#egg=django-nose + $ pip install -e git://github.com/jazzband/django-nose.git#egg=django-nose Since django-nose extends Django's built-in test command, you should add it to your ``INSTALLED_APPS`` in ``settings.py``: @@ -86,6 +90,6 @@ Then set ``TEST_RUNNER`` in ``settings.py``: Development ----------- -:Code: https://github.com/django-nose/django-nose -:Issues: https://github.com/django-nose/django-nose/issues?state=open +:Code: https://github.com/jazzband/django-nose +:Issues: https://github.com/jazzband/django-nose/issues?state=open :Docs: https://django-nose.readthedocs.io diff --git a/contribute.json b/contribute.json index 2b108f0..801deac 100644 --- a/contribute.json +++ b/contribute.json @@ -2,17 +2,17 @@ "name": "django-nose", "description": "Django test runner using nose.", "repository": { - "url": "https://github.com/django-nose/django-nose", + "url": "https://github.com/jazzband/django-nose", "license": "BSD", - "tests": "https://travis-ci.org/django-nose/django-nose" + "tests": "https://travis-ci.org/jazzband/django-nose" }, "participate": { - "home": "https://github.com/django-nose/django-nose", - "docs": "https://github.com/django-nose/django-nose" + "home": "https://github.com/jazzband/django-nose", + "docs": "https://github.com/jazzband/django-nose" }, "bugs": { - "list": "https://github.com/django-nose/django-nose/issues", - "report": "https://github.com/django-nose/django-nose/issues/new" + "list": "https://github.com/jazzband/django-nose/issues", + "report": "https://github.com/jazzband/django-nose/issues/new" }, "keywords": [ "django", diff --git a/docs/installation.rst b/docs/installation.rst index 52327c4..16ee71f 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -11,7 +11,7 @@ The development version can be installed with... : .. code-block:: shell - $ pip install -e git://github.com/django-nose/django-nose.git#egg=django-nose + $ pip install -e git://github.com/jazzband/django-nose.git#egg=django-nose Since django-nose extends Django's built-in test command, you should add it to your ``INSTALLED_APPS`` in ``settings.py``: diff --git a/docs/upgrading.rst b/docs/upgrading.rst index 77b9236..ff75e2c 100644 --- a/docs/upgrading.rst +++ b/docs/upgrading.rst @@ -42,7 +42,7 @@ Django 1.1 ~~~~~~~~~~ If you want to use django-nose with Django 1.1, use -https://github.com/django-nose/django-nose/tree/django-1.1 or +https://github.com/jazzband/django-nose/tree/django-1.1 or http://pypi.python.org/pypi/django-nose/0.0.3. Django 1.0 diff --git a/docs/usage.rst b/docs/usage.rst index 6e5a95e..895c0fe 100644 --- a/docs/usage.rst +++ b/docs/usage.rst @@ -13,9 +13,9 @@ Enabling Database Reuse ----------------------- .. warning:: There are several - `open issues `_ + `open issues `_ with this feature, including - `reports of data loss `_. + `reports of data loss `_. You can save several seconds at the beginning and end of your test suite by reusing the test database from the last run. To do this, set the environment @@ -36,7 +36,7 @@ Enabling Fast Fixtures ---------------------- .. warning:: There are several - `known issues `_ + `known issues `_ with this feature. django-nose includes a fixture bundler which drastically speeds up your tests diff --git a/runtests.sh b/runtests.sh index da6ee27..82b6356 100755 --- a/runtests.sh +++ b/runtests.sh @@ -177,7 +177,7 @@ django_test "./manage.py test unittests --attr special $NOINPUT" 1 'select by at reset_env export REUSE_DB=1 # For the many issues with REUSE_DB=1, see: -# https://github.com/django-nose/django-nose/milestones/Fix%20REUSE_DB=1 +# https://github.com/jazzband/django-nose/milestones/Fix%20REUSE_DB=1 django_test "./manage.py test $NOINPUT" $TESTAPP_COUNT 'with REUSE_DB=1, call #1' 'can fail' django_test "./manage.py test $NOINPUT" $TESTAPP_COUNT 'with REUSE_DB=1, call #2' 'can fail' diff --git a/setup.py b/setup.py index f11905a..792d019 100644 --- a/setup.py +++ b/setup.py @@ -44,7 +44,7 @@ def get_long_description(title): author_email='me@jeffbalogh.org', maintainer='Erik Rose', maintainer_email='erikrose@grinchcentral.com', - url='http://github.com/django-nose/django-nose', + url='http://github.com/jazzband/django-nose', license='BSD', packages=find_packages(exclude=['testapp', 'testapp/*']), include_package_data=True,