From 0d6a072003b956298e0c67e9d4964a3e2c636c85 Mon Sep 17 00:00:00 2001 From: "J. Ryan Stinnett" Date: Mon, 25 Jul 2016 10:09:29 -0500 Subject: [PATCH] servo: Merge #12547 - Allow running WPT in Firefox (from jryans:wpt-firefox); r=jgraham When working with WPT tests, I find it convenient to compare the results of different browsers / engines. By installing a few more Python packages, we can easily test against Firefox from a Servo checkout. As noted in the updated README.md, this change allows you to check WPT tests in Firefox by adding `--product firefox` to the `./mach test-wpt` command. r? @jgraham --- - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors - [x] These changes do not require tests because only the set of test harness packages is changed Source-Repo: https://github.com/servo/servo Source-Revision: f5d589876b53f2a65e001525487dc6acb5aec088 --- servo/python/mach_bootstrap.py | 1 + 1 file changed, 1 insertion(+) diff --git a/servo/python/mach_bootstrap.py b/servo/python/mach_bootstrap.py index 0b5a31c74591..d63f66492d56 100644 --- a/servo/python/mach_bootstrap.py +++ b/servo/python/mach_bootstrap.py @@ -135,6 +135,7 @@ def _activate_virtualenv(topdir): requirements_paths = [ os.path.join("python", "requirements.txt"), os.path.join("tests", "wpt", "harness", "requirements.txt"), + os.path.join("tests", "wpt", "harness", "requirements_firefox.txt"), os.path.join("tests", "wpt", "harness", "requirements_servo.txt"), ] for req_rel_path in requirements_paths: