From 2087de5d0aa1d472145fc1dbdfece3fe652bbac5 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Thu, 23 Feb 2023 17:39:40 -0500 Subject: [PATCH] Don't let deprecation warning fail CI (#219) --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9cc04491..49b66ee8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,4 +41,4 @@ jobs: python -m pip install pytest - name: Test with pytest run: | - python -W error -m pytest + python -W error -W 'ignore:Running attrs on Python 3.6' -m pytest