From fb5506b88b50f04ae91c37c1e7c8a44b371a5b36 Mon Sep 17 00:00:00 2001 From: eddiebergman Date: Mon, 29 Nov 2021 10:10:43 +0100 Subject: [PATCH 1/2] Added manual dispatch to tests --- .github/workflows/pytest.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 513d8ff07f..2037a6578e 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -6,6 +6,12 @@ on: schedule: # Every Monday at 7AM UTC - cron: '0 07 * * 1' + workflow_dispatch: + inputs: + dummy: + description: 'Place holder' + required: false + default: 'Dummy argument' jobs: ubuntu: From 3b89c8ccc4cbf885037372f0f86777d9158a1d90 Mon Sep 17 00:00:00 2001 From: eddiebergman Date: Tue, 30 Nov 2021 11:58:29 +0100 Subject: [PATCH 2/2] Removed parameters to manual dispatch --- .github/workflows/pytest.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 2037a6578e..f6ba82df75 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -3,15 +3,10 @@ name: Tests on: push: pull_request: + workflow_dispatch: schedule: # Every Monday at 7AM UTC - cron: '0 07 * * 1' - workflow_dispatch: - inputs: - dummy: - description: 'Place holder' - required: false - default: 'Dummy argument' jobs: ubuntu: