Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
django-rest-framework
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
django-rest-framework
Commits
73226916
Commit
73226916
authored
May 29, 2013
by
Xavier Ordoquy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use absolute name imports for tests if django version is 1.6+.
parent
1f03b267
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletions
+6
-1
rest_framework/runtests/runtests.py
+6
-1
No files found.
rest_framework/runtests/runtests.py
View file @
73226916
...
@@ -10,6 +10,7 @@ import sys
...
@@ -10,6 +10,7 @@ import sys
sys
.
path
.
append
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
"../.."
))
sys
.
path
.
append
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
"../.."
))
os
.
environ
[
'DJANGO_SETTINGS_MODULE'
]
=
'rest_framework.runtests.settings'
os
.
environ
[
'DJANGO_SETTINGS_MODULE'
]
=
'rest_framework.runtests.settings'
import
django
from
django.conf
import
settings
from
django.conf
import
settings
from
django.test.utils
import
get_runner
from
django.test.utils
import
get_runner
...
@@ -35,7 +36,11 @@ def main():
...
@@ -35,7 +36,11 @@ def main():
else
:
else
:
print
(
usage
())
print
(
usage
())
sys
.
exit
(
1
)
sys
.
exit
(
1
)
failures
=
test_runner
.
run_tests
([
'tests'
+
test_case
])
test_module_name
=
'rest_framework.tests'
if
django
.
VERSION
[
0
]
==
1
and
django
.
VERSION
[
1
]
<
6
:
test_module_name
=
'tests'
failures
=
test_runner
.
run_tests
([
test_module_name
+
test_case
])
sys
.
exit
(
failures
)
sys
.
exit
(
failures
)
...
...
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