We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd963cd commit 0333f23Copy full SHA for 0333f23
setup.py
@@ -9,5 +9,13 @@
9
author_email='mathijs@mathijsfietst.nl',
10
url='https://github.com/visualspace/travis-demo/',
11
packages=find_packages(),
12
- license='License :: Public Domain'
+ license='License :: Public Domain',
13
+
14
+ # Enable django-setuptest
15
+ test_suite='setuptest.setuptest.SetupTestSuite',
16
+ tests_require=(
17
+ 'django-setuptest',
18
+ # Required by django-setuptools on Python 2.6
19
+ 'argparse'
20
+ ),
21
)
test_settings.py
@@ -0,0 +1,9 @@
1
+DATABASES = {
2
+ 'default': {
3
+ 'ENGINE': 'django.db.backends.sqlite3'
4
+ }
5
+}
6
7
+INSTALLED_APPS = (
8
+ 'mydemo',
+)
0 commit comments