diff options
Diffstat (limited to 'tests/wpt/web-platform-tests/docs/frontend.py')
-rw-r--r-- | tests/wpt/web-platform-tests/docs/frontend.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/wpt/web-platform-tests/docs/frontend.py b/tests/wpt/web-platform-tests/docs/frontend.py new file mode 100644 index 00000000000..4b97e2e0958 --- /dev/null +++ b/tests/wpt/web-platform-tests/docs/frontend.py @@ -0,0 +1,8 @@ +import subprocess +import os + +here = os.path.dirname(__file__) + + +def build(*args, **kwargs): + subprocess.check_call(["make", "html"], cwd=here) |