From 7b9a6758930813355d81fc2ee570a72a220aa376 Mon Sep 17 00:00:00 2001 From: Eyon Land <41128502+eyonland@users.noreply.github.com> Date: Tue, 27 Aug 2024 17:36:52 -0500 Subject: [PATCH] #11930: Increase status checks (#11945) --- .github/workflows/all-static-checks.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/all-static-checks.yaml b/.github/workflows/all-static-checks.yaml index 4b2332ace59..d6cc4ca8a52 100644 --- a/.github/workflows/all-static-checks.yaml +++ b/.github/workflows/all-static-checks.yaml @@ -44,7 +44,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Check ttnn is not used in tt_metal tests - run: if (( $(grep -Rnw 'tests/tt_metal' -e 'ttnn' | wc -l ) > 6 )); then exit 1; fi + run: if (( $(grep -Rnw 'tests/tt_metal' -e 'ttnn' | wc -l ) > 11 )); then exit 1; fi - name: Check tt_eager constructs is not used in tt_metal tests run: | if (( $(grep -Rnw 'tests/tt_metal' -e 'tt_lib' | wc -l ) > 0 )); then exit 1; fi