mirror of
https://github.com/servo/servo.git
synced 2025-10-03 18:19:14 +01:00
19 lines
362 B
Bash
Executable file
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
|