From 976fd5451f7d1ea6b806325746776fd82c3693a1 Mon Sep 17 00:00:00 2001 From: younesbelkada Date: Fri, 12 Jan 2024 08:39:47 +0000 Subject: [PATCH] up --- .github/workflows/slow-tests.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/slow-tests.yml b/.github/workflows/slow-tests.yml index 653a348198..06734390eb 100644 --- a/.github/workflows/slow-tests.yml +++ b/.github/workflows/slow-tests.yml @@ -3,11 +3,6 @@ name: Slow tests (on push) on: push: branches: [ add-slow-tests ] - paths: - # Run only when python files are modified - - "trl/**.py" - - "examples/**.py" - - "tests/**.py" env: RUN_SLOW: "yes" IS_GITHUB_CI: "1" @@ -36,14 +31,16 @@ jobs: run: | source activate trl pip install -e . --no-deps - pip install pytest-reportlog + pip install pytest-reportlog parameterized - name: Run common tests on single GPU + if: always() run: | source activate trl make tests_common_gpu - name: Run slow tests on single GPU + if: always() run: | source activate trl make slow_tests_single_gpu @@ -79,16 +76,19 @@ jobs: pip install pytest-reportlog - name: Run common tests on single GPU + if: always() run: | source activate trl make tests_common_gpu - name: Run slow tests on multi GPU + if: always() run: | source activate trl make slow_tests_multi_gpu - name: Run end-to-end SFT examples tests on multi GPU + if: always() run: | source activate trl make run_sft_examples