From 5cf872d539555871d39d491a0437da99f759c27f Mon Sep 17 00:00:00 2001 From: Nicholas Bollweg Date: Sun, 21 Mar 2021 14:34:48 -0400 Subject: [PATCH] update some watch/test flags --- packages/metapackage/package.json | 2 +- scripts/atest.py | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/packages/metapackage/package.json b/packages/metapackage/package.json index 8b3a11f46..9d1a57fb6 100644 --- a/packages/metapackage/package.json +++ b/packages/metapackage/package.json @@ -23,7 +23,7 @@ "build": "tsc -b", "clean": "rimraf lib", "prepublishOnly": "npm run build", - "watch": "tsc -b --watch" + "watch": "tsc -b --watch --preserveWatchOutput" }, "dependencies": { "lsp-ws-connection": "file:../lsp-ws-connection", diff --git a/scripts/atest.py b/scripts/atest.py index 5c1e4f2b0..2aff91399 100644 --- a/scripts/atest.py +++ b/scripts/atest.py @@ -74,7 +74,7 @@ def atest(attempt, extra_args): stem = get_stem(attempt, extra_args) for non_critical in NON_CRITICAL: - extra_args += ["--noncritical", "AND".join(non_critical)] + extra_args += ["--skiponfailure", "AND".join(non_critical)] if attempt != 1: previous = OUT / f"{get_stem(attempt - 1, extra_args)}.robot.xml" @@ -94,7 +94,6 @@ def atest(attempt, extra_args): OUT / f"{stem}.log.html", "--report", OUT / f"{stem}.report.html", - "--xunitskipnoncritical", "--xunit", OUT / f"{stem}.xunit.xml", "--variable",