TE-2527 Move test and dev dependencies out of base.in

This commit is contained in:
Jeremy Bowman
2018-04-17 12:57:18 -04:00
parent 648b13dc47
commit 28d291dce7
17 changed files with 129 additions and 233 deletions

View File

@@ -37,11 +37,11 @@ if [ "$CIRCLE_NODE_TOTAL" == "1" ] ; then
echo "via the CircleCI UI and adjust scripts/circle-ci-tests.sh to match."
echo "Running tests for common/lib/ and pavelib/"
paver test_lib --with-flaky --cov-args="-p" --with-xunitmp || EXIT=1
paver test_lib --cov-args="-p" || EXIT=1
echo "Running python tests for Studio"
paver test_system -s cms --with-flaky --cov-args="-p" --with-xunitmp || EXIT=1
paver test_system -s cms --cov-args="-p" || EXIT=1
echo "Running python tests for lms"
paver test_system -s lms --with-flaky --cov-args="-p" --with-xunitmp || EXIT=1
paver test_system -s lms --cov-args="-p" || EXIT=1
exit $EXIT
else
@@ -78,15 +78,15 @@ else
;;
1) # run all of the lms unit tests
paver test_system -s lms --with-flaky --cov-args="-p" --with-xunitmp
paver test_system -s lms --cov-args="-p"
;;
2) # run all of the cms unit tests
paver test_system -s cms --with-flaky --cov-args="-p" --with-xunitmp
paver test_system -s cms --cov-args="-p"
;;
3) # run the commonlib unit tests
paver test_lib --with-flaky --cov-args="-p" --with-xunitmp
paver test_lib --cov-args="-p"
;;
*)