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
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hsin-Yu Chien
edx-platform-release
Commits
7f9bec93
Commit
7f9bec93
authored
9 years ago
by
Christine Lytwynec
Browse files
Options
Downloads
Patches
Plain Diff
split common/lib and js unit tests into separate shards
parent
f07e4b9b
No related branches found
Branches containing commit
Tags
release-2021-07-08-16.42
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
scripts/all-tests.sh
+10
-0
10 additions, 0 deletions
scripts/all-tests.sh
with
10 additions
and
0 deletions
scripts/all-tests.sh
+
10
−
0
View file @
7f9bec93
...
...
@@ -17,6 +17,8 @@ set -e
# - "quality": Run the quality (pep8/pylint) checks
# - "lms-unit": Run the LMS Python unit tests
# - "cms-unit": Run the CMS Python unit tests
# - "js-unit": Run the JavaScript tests
# - "commonlib-unit": Run Python unit tests from the common/lib directory
# - "commonlib-js-unit": Run the JavaScript tests and the Python unit
# tests from the common/lib directory
# - "lms-acceptance": Run the acceptance (Selenium/Lettuce) tests for
...
...
@@ -113,6 +115,14 @@ END
paver test_system
-s
cms
--extra_args
=
"--with-flaky"
--cov_args
=
"-p"
;;
"commonlib-unit"
)
paver test_lib
--extra_args
=
"--with-flaky"
--cov_args
=
"-p"
;;
"js-unit"
)
paver test_js
--coverage
;;
"commonlib-js-unit"
)
paver test_js
--coverage
--skip_clean
||
{
EXIT
=
1
;
}
paver test_lib
--skip_clean
--extra_args
=
"--with-flaky"
--cov_args
=
"-p"
||
{
EXIT
=
1
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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