Speed up pa11ycrawler runs on Jenkins, Update pa11ycrawler to v0.0.2

This commit is contained in:
Christine Lytwynec
2016-04-26 13:39:21 -04:00
parent 645839b81d
commit f68747ec96
4 changed files with 23 additions and 14 deletions

View File

@@ -134,8 +134,8 @@ def perf_report_bokchoy(options):
('with-html', 'w', 'Include html reports'),
make_option('--course-key', help='Course key for test course'),
make_option(
"--skip-fetch",
action="store_false",
"--fetch-course",
action="store_true",
dest="should_fetch_course",
help='Course key for test course',
),

View File

@@ -67,7 +67,7 @@ git+https://github.com/edx/rfc6266.git@v0.0.5-edx#egg=rfc6266==0.0.5-edx
# Used for testing
git+https://github.com/edx/lettuce.git@0.2.20.002#egg=lettuce==0.2.20.002
git+https://github.com/edx/pa11ycrawler.git@0.0.1#egg=pa11ycrawler
git+https://github.com/edx/pa11ycrawler.git@0.0.2#egg=pa11ycrawler
# Our libraries:
git+https://github.com/edx/XBlock.git@xblock-0.4.8#egg=XBlock==0.4.8

View File

@@ -1,11 +0,0 @@
#!/usr/bin/env bash
set -e
echo "Setting up for accessibility tests..."
source scripts/jenkins-common.sh
echo "Running pa11ycrawler against test course..."
paver pa11ycrawler
echo "Generating coverage report..."
paver pa11ycrawler_coverage

View File

@@ -1,6 +1,17 @@
#!/usr/bin/env bash
set -e
###############################################################################
#
# Usage:
# To run just tests, without pa11ycrawler:
# ./scripts/accessibility-tests.sh
#
# To run tests, followed by pa11ycrawler:
# RUN_PA11YCRAWLER=1 ./scripts/accessibility-tests.sh
#
###############################################################################
echo "Setting up for accessibility tests..."
source scripts/jenkins-common.sh
@@ -9,3 +20,12 @@ SELENIUM_BROWSER=phantomjs paver test_a11y
echo "Generating coverage report..."
paver a11y_coverage
if [ "$RUN_PA11YCRAWLER" = "1" ]
then
echo "Running pa11ycrawler against test course..."
paver pa11ycrawler --fasttest --fetch-course --with-html
echo "Generating coverage report..."
paver pa11ycrawler_coverage
fi