| #!/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 |