From ed7dbe6a5e339f30515fbd2c1897e8a9bcd2690b Mon Sep 17 00:00:00 2001 From: Peter Van Dyken Date: Tue, 30 Apr 2024 10:22:15 -0400 Subject: [PATCH] Another fix to test counting This time, poe was outputting a spurious line, so use -q to eliminate it --- .github/workflows/nightly.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 25c678ea..0fde771a 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -27,7 +27,7 @@ jobs: id: count run: | echo "NUM=$( - poetry run poe test --co -q --disable-warnings | head -n -2 | wc -l + poetry run poe -q test --co -q --disable-warnings | head -n -2 | wc -l )" >> "$GITHUB_OUTPUT" - name: Count number of timed tests id: timed-count