Commit d275107d by Christine Lytwynec

updated doctring to explain the bok-choy shards

parent c1da8aa7
...@@ -23,9 +23,20 @@ set -e ...@@ -23,9 +23,20 @@ set -e
# - "bok-choy": Run acceptance tests that use the bok-choy framework # - "bok-choy": Run acceptance tests that use the bok-choy framework
# #
# `SHARD` is a number (1, 2, or 3) indicating which subset of the tests # `SHARD` is a number (1, 2, or 3) indicating which subset of the tests
# to build. Currently, "lms-acceptance" has two shards (1 and 2), # to build. Currently, "lms-acceptance" and "bok-choy" each have two
# "cms-acceptance" has three shards (1, 2, and 3), and all the # shards (1 and 2), "cms-acceptance" has three shards (1, 2, and 3),
# other test suites have one shard. # and all the other test suites have one shard.
#
# For the "bok-choy", the tests are put into shard groups using the nose
# 'attr' decorator (e.g. "@attr('shard_1')"). Currently, anything with
# the 'shard_1' attribute will run in the first shard. All other bok-choy
# tests will run in shard 2.
#
# For the lettuce acceptance tests, ("lms-" and "cms-acceptance") they
# are decorated with "@shard_{}" (e.g. @shard_1 for the first shard).
# The lettuce tests must have a shard specified to be run in jenkins,
# as there is no shard that runs unspecified tests.
#
# #
# Jenkins configuration: # Jenkins configuration:
# #
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment