Create a third shard for lms unit tests.

This will leverage the nose attrib plugin to allow us
to break tests apart on our build system to run
in parallel on separate nodes.
This commit is contained in:
Ben Patterson
2016-02-02 18:47:10 -05:00
parent 9b8ff773ee
commit c504029b39
66 changed files with 221 additions and 2 deletions

View File

@@ -94,7 +94,10 @@ END
paver test_system -s lms --extra_args="--attr='shard_1' --with-flaky" --cov_args="-p"
;;
"2")
paver test_system -s lms --extra_args="--attr='shard_1=False' --with-flaky" --cov_args="-p"
paver test_system -s lms --extra_args="--attr='shard_2' --with-flaky" --cov_args="-p"
;;
"3")
paver test_system -s lms --extra_args="--attr='shard_1=False,shard_2=False' --with-flaky" --cov_args="-p"
;;
*)
paver test_system -s lms --extra_args="--with-flaky" --cov_args="-p"