Skip to content

Commit 4de62a5

Browse files
UTAPI-116: Ignore DEP0040 punycode from oas-tools
1 parent af5c6fa commit 4de62a5

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/scripts/run_ft_tests.bash

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,10 @@ fi
1919

2020
# Redirect stderr to a separate file (without "Killed" to look for warnings / error messages)
2121
# While still keeping it in terminal
22+
# ignore punycode warning from oas-tools@2.2.2 in utapiV2 tests
2223

2324
UTAPI_INTERVAL_TEST_MODE=$1 npm $SETUP_CMD \
24-
2> >(grep -v -E "^Killed$" | tee -a "setup_$2.stderr.log" >&2) \
25+
2> >(grep -v -E "^Killed$|punycode" | tee -a "setup_$2.stderr.log" >&2) \
2526
| tee -a "setup_$2.log" &
2627

2728
bash tests/utils/wait_for_local_port.bash $PORT 40

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ on:
2121

2222
env:
2323
AWS_SDK_JS_SUPPRESS_MAINTENANCE_MODE_MESSAGE: '1'
24-
NODE_OPTIONS: '--trace-warnings'
24+
# NODE_OPTIONS: '--trace-warnings'
2525

2626
jobs:
2727
build-ci:

0 commit comments

Comments
 (0)