blob: 2b63413760591ce9f1f467dd1b0603ee8d38cf10 [file] [log] [blame]
#!/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 unstable
pip install -U tox codecov
cd tools/wpt
tox
}
main