diff --git a/.github/workflows/scheduled_tests.yml b/.github/workflows/scheduled_tests.yml index 5ce9e21..210d441 100644 --- a/.github/workflows/scheduled_tests.yml +++ b/.github/workflows/scheduled_tests.yml @@ -6,7 +6,6 @@ on: - cron: "15,45 14-23,0-1 * * 1-5" # At minutes 15 and 45 past every hour from 14:00 through 01:00 on every day-of-week from Monday through Friday. - cron: "15 7,13 * * 1-5" # At minute 15 past hour 7 and 13 on every day-of-week from Monday through Friday. - cron: "0 14 * * 1" # At 14:00 on Monday (once a week). - - cron: "40 21 * * 3" # At 21:40 on Wednesday (once a week) - FOR TESTING. jobs: run_app_tests: @@ -51,10 +50,6 @@ jobs: if: github.event.schedule == '0 14 * * 1' run: echo "BYPASS_VERSION_CHECK=True" >> $GITHUB_ENV - - name: Set BYPASS_VERSION_CHECK for weekly run to bypass the version check - FOR TESTING - if: github.event.schedule == '40 21 * * 3' - run: echo "BYPASS_VERSION_CHECK=True" >> $GITHUB_ENV - - name: Run pytest run: | source .venv/bin/activate