From c0e24ec9e27885ea87ff92ceaebc840d0c6c43e0 Mon Sep 17 00:00:00 2001 From: Alexander Dokuchaev Date: Wed, 11 Sep 2024 12:41:40 +0300 Subject: [PATCH] [GA] Ignore files with tests that are not run in precommit actions (#2962) ### Changes Add ignore files with tests that are not run in precommit actions ### Reason for changes Any changes in this files does not affect pre-commit jobs. ### Related tickets 149094 --- .github/workflows/precommit.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/precommit.yml b/.github/workflows/precommit.yml index 661b82f8967..4dd23145a9f 100644 --- a/.github/workflows/precommit.yml +++ b/.github/workflows/precommit.yml @@ -10,6 +10,9 @@ on: paths-ignore: - '**/*.md' - 'docs/**/*' + - 'tests/post_training/*' # post_training tests are only run in Jenkins + - 'tests/torch/sota_checkpoints_eval.json' # reference for PT e2e + - 'tests/tensorflow/sota_checkpoints_eval.json' # reference for TF e2e jobs: common: