Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
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-platform
Commits
927b74e7
Commit
927b74e7
authored
May 19, 2016
by
Calen Pennington
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make separate test processes use separate GRADES_DOWNLOAD and FINANCIAL_REPORTS directories
parent
76e0482f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
common/lib/xmodule/xmodule/partitions/tests/test_partitions.py
+5
-2
lms/envs/test.py
+4
-0
No files found.
common/lib/xmodule/xmodule/partitions/tests/test_partitions.py
View file @
927b74e7
...
...
@@ -132,7 +132,7 @@ class PartitionTestCase(TestCase):
)
# Be sure to clean up the global scheme_extensions after the test.
self
.
addCleanup
(
self
.
cleanup
SchemeE
xtensions
)
self
.
addCleanup
(
self
.
cleanup
_scheme_e
xtensions
)
# Create a test partition
self
.
user_partition
=
UserPartition
(
...
...
@@ -148,7 +148,10 @@ class PartitionTestCase(TestCase):
self
.
user_partition
.
get_scheme
(
self
.
non_random_scheme
.
name
)
self
.
user_partition
.
get_scheme
(
self
.
random_scheme
.
name
)
def
cleanupSchemeExtensions
(
self
):
def
cleanup_scheme_extensions
(
self
):
"""
Unset the UserPartition.scheme_extensions cache.
"""
UserPartition
.
scheme_extensions
=
None
...
...
lms/envs/test.py
View file @
927b74e7
...
...
@@ -70,6 +70,10 @@ FEATURES['ENABLE_VERIFIED_CERTIFICATES'] = True
FEATURES
[
'ENABLE_S3_GRADE_DOWNLOADS'
]
=
True
FEATURES
[
'ALLOW_COURSE_STAFF_GRADE_DOWNLOADS'
]
=
True
GRADES_DOWNLOAD
[
'ROOT_PATH'
]
+=
"-{}"
.
format
(
os
.
getpid
())
FINANCIAL_REPORTS
[
'ROOT_PATH'
]
+=
"-{}"
.
format
(
os
.
getpid
())
# Toggles embargo on for testing
FEATURES
[
'EMBARGO'
]
=
True
...
...
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