From 83685a69ca9cdec1a17ce7e0bb1058744cc3d2cc Mon Sep 17 00:00:00 2001 From: David Robertson Date: Wed, 21 Sep 2022 12:15:26 +0100 Subject: [PATCH 1/2] Raise issue if complement fails with latest deps Oversight in #13213. --- .github/workflows/latest_deps.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/latest_deps.yml b/.github/workflows/latest_deps.yml index 8366ac9393e3..9a708286a465 100644 --- a/.github/workflows/latest_deps.yml +++ b/.github/workflows/latest_deps.yml @@ -201,10 +201,11 @@ jobs: open-issue: if: "failure() && github.event_name != 'push' && github.event_name != 'pull_request'" needs: - # TODO: should mypy be included here? It feels more brittle than the other two. + # TODO: should mypy be included here? It feels more brittle than the others. - mypy - trial - sytest + - complement runs-on: ubuntu-latest From fb3801ef2a5471fc653affe1029c4602f5920b64 Mon Sep 17 00:00:00 2001 From: David Robertson Date: Wed, 21 Sep 2022 12:16:10 +0100 Subject: [PATCH 2/2] Changelog --- changelog.d/13859.misc | 1 + 1 file changed, 1 insertion(+) create mode 100644 changelog.d/13859.misc diff --git a/changelog.d/13859.misc b/changelog.d/13859.misc new file mode 100644 index 000000000000..2780a4af3c5b --- /dev/null +++ b/changelog.d/13859.misc @@ -0,0 +1 @@ +Raise issue if complement fails with latest deps.