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
f4df2ac1
Commit
f4df2ac1
authored
Oct 30, 2015
by
Jesse Zoldak
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Increase the test output timeout and quiet the pylint output.
parent
717f5dc5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
circle.yml
+1
-0
scripts/circle-ci-tests.sh
+1
-3
No files found.
circle.yml
View file @
f4df2ac1
...
@@ -42,6 +42,7 @@ test:
...
@@ -42,6 +42,7 @@ test:
# to understand how multiple containers can be used to
# to understand how multiple containers can be used to
# run subsets of tests in parallel.
# run subsets of tests in parallel.
-
./scripts/all-tests.sh
:
-
./scripts/all-tests.sh
:
timeout
:
900
# if a command runs this many seconds without output, kill it
parallel
:
true
parallel
:
true
post
:
post
:
...
...
scripts/circle-ci-tests.sh
View file @
f4df2ac1
...
@@ -55,9 +55,7 @@ else
...
@@ -55,9 +55,7 @@ else
paver run_pep8
>
pep8.log
||
{
cat
pep8.log
;
EXIT
=
1
;
}
paver run_pep8
>
pep8.log
||
{
cat
pep8.log
;
EXIT
=
1
;
}
echo
"Finding pylint violations and storing in report..."
echo
"Finding pylint violations and storing in report..."
# HACK: we need to print something to the console, otherwise circleci
paver run_pylint
-l
$PYLINT_THRESHOLD
>
pylint.log
||
{
cat
pylint.log
;
EXIT
=
1
;
}
# fails and aborts the job because nothing is displayed for > 10 minutes.
paver run_pylint
-l
$PYLINT_THRESHOLD
| tee pylint.log
||
EXIT
=
1
mkdir
-p
reports
mkdir
-p
reports
echo
"Finding jshint violations and storing report..."
echo
"Finding jshint violations and storing report..."
...
...
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