forked from GithubBackups/healthchecks
Add hc.payments to INSTALLED_APPS and braintree to requirements.txt so hc.payments tests can be run too.
This commit is contained in:
parent
7b98cf23a4
commit
0eab82c9a3
@ -36,7 +36,8 @@ INSTALLED_APPS = (
|
|||||||
|
|
||||||
'hc.accounts',
|
'hc.accounts',
|
||||||
'hc.api',
|
'hc.api',
|
||||||
'hc.front'
|
'hc.front',
|
||||||
|
'hc.payments'
|
||||||
)
|
)
|
||||||
|
|
||||||
MIDDLEWARE_CLASSES = (
|
MIDDLEWARE_CLASSES = (
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
from django.conf import settings
|
|
||||||
from django.conf.urls import include, url
|
from django.conf.urls import include, url
|
||||||
from django.contrib import admin
|
from django.contrib import admin
|
||||||
|
|
||||||
@ -7,8 +6,5 @@ urlpatterns = [
|
|||||||
url(r'^accounts/', include('hc.accounts.urls')),
|
url(r'^accounts/', include('hc.accounts.urls')),
|
||||||
url(r'^', include('hc.api.urls')),
|
url(r'^', include('hc.api.urls')),
|
||||||
url(r'^', include('hc.front.urls')),
|
url(r'^', include('hc.front.urls')),
|
||||||
|
url(r'^', include('hc.payments.urls'))
|
||||||
]
|
]
|
||||||
|
|
||||||
if settings.USE_PAYMENTS:
|
|
||||||
urlpatterns.append(url(r'^', include('hc.payments.urls')))
|
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
braintree
|
||||||
django-appconf==1.0.1
|
django-appconf==1.0.1
|
||||||
django-ses-backend==0.1.1
|
django-ses-backend==0.1.1
|
||||||
Django==1.9
|
Django==1.9
|
||||||
|
Loading…
x
Reference in New Issue
Block a user