mirror of
https://github.com/servo/servo.git
synced 2025-07-12 18:03:49 +01:00
15 lines
300 B
Bash
Executable file
15 lines
300 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
SCRIPT_DIR=$(cd $(dirname "$0") && pwd -P)
|
|
WPT_ROOT=$SCRIPT_DIR/../..
|
|
cd $WPT_ROOT
|
|
|
|
main() {
|
|
git fetch --quiet --unshallow https://github.com/web-platform-tests/wpt.git +refs/heads/*:refs/remotes/origin/*
|
|
pip install --user -U tox codecov
|
|
cd tools/wpt
|
|
tox
|
|
}
|
|
|
|
main
|