From 8f17f85d1631457550412687cd69bbbb04124a6f Mon Sep 17 00:00:00 2001 From: Valentin Lorentz <progval+git@progval.net> Date: Wed, 24 Feb 2021 19:48:14 +0100 Subject: [PATCH] workflows: exclude testNoticeNonexistentChannel on InspIRCd Reported at https://github.com/inspircd/inspircd/issues/1849 --- .github/workflows/inspircd.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/inspircd.yml b/.github/workflows/inspircd.yml index 1ed3f59..3c51ec0 100644 --- a/.github/workflows/inspircd.yml +++ b/.github/workflows/inspircd.yml @@ -47,5 +47,6 @@ jobs: - name: Test with pytest run: | - PATH=~/.local/bin:$PATH pytest --controller irctest.controllers.inspircd -k 'not Oragono and not deprecated and not strict' + # testNoticeNonexistentChannel fails because of https://github.com/inspircd/inspircd/issues/1849 + PATH=~/.local/bin:$PATH pytest --controller irctest.controllers.inspircd -k 'not Oragono and not deprecated and not strict and not testNoticeNonexistentChannel'