Skip to content

Commit 5cf872d

Browse files
committed
update some watch/test flags
1 parent 76bef7d commit 5cf872d

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

packages/metapackage/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"build": "tsc -b",
2424
"clean": "rimraf lib",
2525
"prepublishOnly": "npm run build",
26-
"watch": "tsc -b --watch"
26+
"watch": "tsc -b --watch --preserveWatchOutput"
2727
},
2828
"dependencies": {
2929
"lsp-ws-connection": "file:../lsp-ws-connection",

scripts/atest.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def atest(attempt, extra_args):
7474
stem = get_stem(attempt, extra_args)
7575

7676
for non_critical in NON_CRITICAL:
77-
extra_args += ["--noncritical", "AND".join(non_critical)]
77+
extra_args += ["--skiponfailure", "AND".join(non_critical)]
7878

7979
if attempt != 1:
8080
previous = OUT / f"{get_stem(attempt - 1, extra_args)}.robot.xml"
@@ -94,7 +94,6 @@ def atest(attempt, extra_args):
9494
OUT / f"{stem}.log.html",
9595
"--report",
9696
OUT / f"{stem}.report.html",
97-
"--xunitskipnoncritical",
9897
"--xunit",
9998
OUT / f"{stem}.xunit.xml",
10099
"--variable",

0 commit comments

Comments
 (0)