Skip to content

Commit b963fd2

Browse files
committed
⬆️ Bump files with dotnet-file sync
# devlooped/oss - Fix test filter for theory tests devlooped/oss@1725809 - Update action.yml devlooped/oss@fca55bc
1 parent 1a56cef commit b963fd2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/test/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ runs:
2727
then
2828
exit 0
2929
fi
30-
# cat output, get failed test names, join as DisplayName=TEST with |, remove trailing |.
31-
filter=$(cat ./output.log | grep -o -P '(?<=\sFailed\s)[^\s]*' | awk 'BEGIN { ORS="|" } { print("DisplayName=" $0) }' | grep -o -P '.*(?=\|$)')
30+
# cat output, get failed test names, remove trailing whitespace, sort+dedupe, join as FQN~TEST with |, remove trailing |.
31+
filter=$(cat ./output.log | grep -o -P '(?<=\sFailed\s)[\w\._]*' | sed 's/ *$//g' | sort -u | awk 'BEGIN { ORS="|" } { print("FullyQualifiedName~" $0) }' | grep -o -P '.*(?=\|$)')
3232
((counter++))
3333
done
3434
exit $exitcode

.netconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,8 +154,8 @@
154154
weak
155155
[file ".github/workflows/test/action.yml"]
156156
url = https://github.com/devlooped/oss/blob/main/.github/workflows/test/action.yml
157-
sha = 2c82d7d80183eb619d48cddada414ff3c471303a
158-
etag = 93a510692a6f4b5350ba486d1e944ea444612f137730f649ae6a2f96d7d970d0
157+
sha = fca55bc0e439be202a4480a682415a92c09b7672
158+
etag = e75412a4af8b83897504e754f9a95cd4ebcd95b358857047afeb3cd97b2497ba
159159
weak
160160
[file "src/nuget.config"]
161161
url = https://github.com/devlooped/oss/blob/main/src/nuget.config

0 commit comments

Comments
 (0)