From e70da0291e4a8a636083763f73d19151ee9899be Mon Sep 17 00:00:00 2001 From: ruthra kumar Date: Tue, 3 Jun 2025 13:37:22 +0530 Subject: [PATCH] ci: suppress compiled files in output --- .github/workflows/patch.yml | 2 +- .github/workflows/server-tests-mariadb.yml | 2 +- .github/workflows/server-tests-postgres.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/patch.yml b/.github/workflows/patch.yml index f9a79d86c04..23686aed68c 100644 --- a/.github/workflows/patch.yml +++ b/.github/workflows/patch.yml @@ -36,7 +36,7 @@ jobs: - name: Check for valid Python & Merge Conflicts run: | - python -m compileall -f "${GITHUB_WORKSPACE}" + python -m compileall -fq "${GITHUB_WORKSPACE}" if grep -lr --exclude-dir=node_modules "^<<<<<<< " "${GITHUB_WORKSPACE}" then echo "Found merge conflicts" exit 1 diff --git a/.github/workflows/server-tests-mariadb.yml b/.github/workflows/server-tests-mariadb.yml index 42b9905405f..fdc7f09bfc5 100644 --- a/.github/workflows/server-tests-mariadb.yml +++ b/.github/workflows/server-tests-mariadb.yml @@ -65,7 +65,7 @@ jobs: - name: Check for valid Python & Merge Conflicts run: | - python -m compileall -f "${GITHUB_WORKSPACE}" + python -m compileall -fq "${GITHUB_WORKSPACE}" if grep -lr --exclude-dir=node_modules "^<<<<<<< " "${GITHUB_WORKSPACE}" then echo "Found merge conflicts" exit 1 diff --git a/.github/workflows/server-tests-postgres.yml b/.github/workflows/server-tests-postgres.yml index 7b2d52acd19..e814a8b13dc 100644 --- a/.github/workflows/server-tests-postgres.yml +++ b/.github/workflows/server-tests-postgres.yml @@ -50,7 +50,7 @@ jobs: - name: Check for valid Python & Merge Conflicts run: | - python -m compileall -f "${GITHUB_WORKSPACE}" + python -m compileall -fq "${GITHUB_WORKSPACE}" if grep -lr --exclude-dir=node_modules "^<<<<<<< " "${GITHUB_WORKSPACE}" then echo "Found merge conflicts" exit 1