Skip to content

Commit

Permalink
Longer name for the test file
Browse files Browse the repository at this point in the history
  • Loading branch information
palewire committed Jun 14, 2012
1 parent 7a72eb8 commit d17e113
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -12,4 +12,4 @@ install:
- pip install -r requirements.txt --use-mirrors
- pip install -q Django==$DJANGO_VERSION --use-mirrors
# command to run tests
script: python qiktest.py yamlfield
script: python quicktest.py yamlfield
8 changes: 4 additions & 4 deletions qiktest.py → quicktest.py
Expand Up @@ -4,13 +4,13 @@
from django.conf import settings


class QikDjangoTest(object):
class QuickDjangoTest(object):
"""
A quick way to run the Django test suite without a fully-configured project.
Example usage:
>>> QikDjangoTest('app1', 'app2')
>>> QuickDjangoTest('app1', 'app2')
Based on a script published by Lukasz Dziedzia at:
http://stackoverflow.com/questions/3841725/how-to-launch-tests-for-django-reusable-app
Expand Down Expand Up @@ -86,7 +86,7 @@ def _new_tests(self):
Example usage:
$ python qiktest.py app1 app2
$ python quicktest.py app1 app2
"""
parser = argparse.ArgumentParser(
Expand All @@ -95,4 +95,4 @@ def _new_tests(self):
)
parser.add_argument('apps', nargs='+', type=str)
args = parser.parse_args()
QikDjangoTest(*args.apps)
QuickDjangoTest(*args.apps)

0 comments on commit d17e113

Please sign in to comment.