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
c1da8aa7
Commit
c1da8aa7
authored
Jul 29, 2014
by
Christine Lytwynec
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use paver commands in jenkins script
parent
c0264ca8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
scripts/all-tests.sh
+10
-10
No files found.
scripts/all-tests.sh
View file @
c1da8aa7
...
...
@@ -85,9 +85,9 @@ source $HOME/edx-venv/bin/activate
case
"
$TEST_SUITE
"
in
"quality"
)
rake
pep8
>
pep8.log
||
{
cat
pep8.log
;
exit
1
;
}
rake
pylint
>
pylint.log
||
{
cat
pylint.log
;
exit
1
;
}
rake
quality
paver run_
pep8
>
pep8.log
||
{
cat
pep8.log
;
exit
1
;
}
paver run_
pylint
>
pylint.log
||
{
cat
pylint.log
;
exit
1
;
}
paver run_
quality
# Need to create an empty test result so the post-build
# action doesn't fail the build.
...
...
@@ -101,29 +101,29 @@ END
;;
"unit"
)
rake
test
rake
coverage
paver
test
paver
coverage
;;
"lms-acceptance"
)
rake
test
:acceptance:lms[
"-v 3 --tag shard_
${
SHARD
}
"
]
paver test_acceptance
-s
lms
--extra_args
=
"-v 3 --tag shard_
${
SHARD
}
"
;;
"cms-acceptance"
)
rake
test
:acceptance:cms[
"-v 3 --tag shard_
${
SHARD
}
"
]
paver test_acceptance
-s
cms
--extra_args
=
"-v 3 --tag shard_
${
SHARD
}
"
;;
"bok-choy"
)
case
"
$SHARD
"
in
"1"
)
rake
test
:bok_choy[
"-a shard_1"
]
paver test_bokchoy
--extra_args
=
"-a shard_1"
;;
"2"
)
rake
test
:bok_choy[
"-a '!shard_1'"
]
paver test_bokchoy
--extra_args
=
"-a '!shard_1'"
;;
esac
rake
test
:bok_choy:
coverage
paver bokchoy_
coverage
;;
esac
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