Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
edx-platform-release
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
code.vt.edu will be down for maintenance from 0530-0630 EDT Wednesday, March 26th
Show more breadcrumbs
Hsin-Yu Chien
edx-platform-release
Commits
f4df2ac1
Commit
f4df2ac1
authored
9 years ago
by
Jesse Zoldak
Browse files
Options
Downloads
Patches
Plain Diff
Increase the test output timeout and quiet the pylint output.
parent
717f5dc5
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
circle.yml
+1
-0
1 addition, 0 deletions
circle.yml
scripts/circle-ci-tests.sh
+1
-3
1 addition, 3 deletions
scripts/circle-ci-tests.sh
with
2 additions
and
3 deletions
circle.yml
+
1
−
0
View file @
f4df2ac1
...
...
@@ -42,6 +42,7 @@ test:
# to understand how multiple containers can be used to
# run subsets of tests in parallel.
-
./scripts/all-tests.sh
:
timeout
:
900
# if a command runs this many seconds without output, kill it
parallel
:
true
post
:
...
...
This diff is collapsed.
Click to expand it.
scripts/circle-ci-tests.sh
+
1
−
3
View file @
f4df2ac1
...
...
@@ -55,9 +55,7 @@ else
paver run_pep8
>
pep8.log
||
{
cat
pep8.log
;
EXIT
=
1
;
}
echo
"Finding pylint violations and storing in report..."
# HACK: we need to print something to the console, otherwise circleci
# fails and aborts the job because nothing is displayed for > 10 minutes.
paver run_pylint
-l
$PYLINT_THRESHOLD
|
tee
pylint.log
||
EXIT
=
1
paver run_pylint
-l
$PYLINT_THRESHOLD
>
pylint.log
||
{
cat
pylint.log
;
EXIT
=
1
;
}
mkdir
-p
reports
echo
"Finding jshint violations and storing report..."
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment