Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-ora2
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-ora2
Commits
a4ce7bb0
Commit
a4ce7bb0
authored
May 29, 2015
by
Ben Patterson
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #704 from edx/benp/quiet-down-tests
Ignore warnings bubbling up in tests
parents
7c571673
a3788e97
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
+5
-1
manage.py
+4
-0
scripts/install-python.sh
+1
-1
No files found.
manage.py
View file @
a4ce7bb0
...
...
@@ -12,6 +12,10 @@ if __name__ == "__main__":
# Django asks us if we want to delete the database.
# We do.
if
'test'
in
sys
.
argv
[
0
:
3
]:
# Catch warnings in tests and redirect them to be handled by the test runner. Otherwise build results are too
# noisy to be of much use.
import
logging
logging
.
captureWarnings
(
True
)
sys
.
argv
.
append
(
'--noinput'
)
from
django.core.management
import
execute_from_command_line
...
...
scripts/install-python.sh
View file @
a4ce7bb0
...
...
@@ -3,7 +3,7 @@
cd
`
dirname
$BASH_SOURCE
`
&&
cd
..
echo
"Installing Python requirements..."
pip install
-q
-r
requirements/base.txt
pip install
-q
-r
requirements/base.txt
--exists-action
w
echo
"Installing the OpenAssessment XBlock..."
cat
<<
EOF
| python -
...
...
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