Commit 73806bee by Christine Lytwynec

Merge pull request #12478 from edx/clytwynec/ac-367

Add skip_clean option to pa11ycrawler
parents cf8e37b3 0f90b927
......@@ -19,6 +19,7 @@ __test__ = False # do not collect
BOKCHOY_OPTS = [
('test_spec=', 't', 'Specific test to run'),
('fasttest', 'a', 'Skip some setup'),
('skip_clean', 'C', 'Skip cleaning repository before running tests'),
('serversonly', 'r', 'Prepare suite and leave servers running'),
('testsonly', 'o', 'Assume servers are running and execute tests only'),
('extra_args=', 'e', 'adds as extra args to the test command'),
......
......@@ -24,7 +24,7 @@ paver a11y_coverage
if [ "$RUN_PA11YCRAWLER" = "1" ]
then
echo "Running pa11ycrawler against test course..."
paver pa11ycrawler --fasttest --fetch-course --with-html
paver pa11ycrawler --fasttest --skip_clean --fetch-course --with-html
echo "Generating coverage report..."
paver pa11ycrawler_coverage
......
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