servo/tests/wpt/web-platform-tests/tools/ci/ci_wpt.sh

19 lines
362 B
Bash
Executable file

#!/bin/bash
set -e
SCRIPT_DIR=$(dirname $(readlink -f "$0"))
WPT_ROOT=$(readlink -f $SCRIPT_DIR/../..)
cd $WPT_ROOT
source tools/ci/lib.sh
main() {
git fetch --unshallow https://github.com/w3c/web-platform-tests.git +refs/heads/*:refs/remotes/origin/*
hosts_fixup
install_chrome dev
pip install -U tox codecov
cd tools/wpt
tox
}
main