Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-notes-api
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-notes-api
Commits
0f77d84b
Commit
0f77d84b
authored
Nov 20, 2014
by
Oleg Marshev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove django_nose from common setting.
parent
782ed102
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
3 deletions
+5
-3
notesserver/settings/common.py
+1
-3
notesserver/settings/dev.py
+2
-0
notesserver/settings/test.py
+2
-0
No files found.
notesserver/settings/common.py
View file @
0f77d84b
...
@@ -20,7 +20,6 @@ INSTALLED_APPS = (
...
@@ -20,7 +20,6 @@ INSTALLED_APPS = (
'rest_framework'
,
'rest_framework'
,
'rest_framework_swagger'
,
'rest_framework_swagger'
,
'corsheaders'
,
'corsheaders'
,
'django_nose'
,
)
)
STATIC_URL
=
'/static/'
STATIC_URL
=
'/static/'
...
@@ -57,4 +56,4 @@ except IOError:
...
@@ -57,4 +56,4 @@ except IOError:
'ENGINE'
:
'django.db.backends.sqlite3'
,
'ENGINE'
:
'django.db.backends.sqlite3'
,
'NAME'
:
':memory:'
'NAME'
:
':memory:'
}
}
}
}
\ No newline at end of file
notesserver/settings/dev.py
View file @
0f77d84b
from
.common
import
*
from
.common
import
*
DEBUG
=
True
DEBUG
=
True
INSTALLED_APPS
=
(
'django_nose'
,)
notesserver/settings/test.py
View file @
0f77d84b
...
@@ -11,3 +11,5 @@ DATABASES = {
...
@@ -11,3 +11,5 @@ DATABASES = {
}
}
TEST_RUNNER
=
'django_nose.NoseTestSuiteRunner'
TEST_RUNNER
=
'django_nose.NoseTestSuiteRunner'
INSTALLED_APPS
=
(
'django_nose'
,)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment