Skip to content

Commit e3da4a3

Browse files
bigmontzrobsdedude
andauthored
testkit: Speedup the test by enable skip the browser tests (#772)
Browser tests are consuming a huge amount of time and making the testkit PR take a long time just to change unrelated issue. The env var `TEST_DRIVER_SKIP_BROWSER` could be used to skip the browser tests. Co-authored-by: Rouven Bauer <[email protected]>
1 parent d693a2b commit e3da4a3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

testkit/integration.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ def run(args):
88

99

1010
def test_driver():
11-
run(["gulp", "test-browser"])
11+
if (os.environ.get("TEST_DRIVER_SKIP_BROWSER", "false").lower()
12+
in ("y", "yes", "t", "true", "1", "on")):
13+
run(["gulp", "test-browser"])
1214
run(["gulp", "test-nodejs-integration"])
1315

1416

0 commit comments

Comments
 (0)