blob: 76f682e254d313490c96ce1b9ee62acc93c0cfb1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/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
# wpt commands integration tests
cd tools/wpt
tox
cd $WPT_ROOT
# WMAS test runner integration tests
cd tools/wave
tox
cd $WPT_ROOT
}
main
|