From e78555854e0b4d5242d02ecec5813301f9f7df8b Mon Sep 17 00:00:00 2001 From: Deimos Date: Mon, 6 May 2019 18:18:11 -0600 Subject: [PATCH] pytest: ignore YAMLLoadWarning PyYAML 5.1 emits a warning because of the way that webassets loads YAML (which is now deprecated). This suppresses the warning in pytest. --- tildes/pytest.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/tildes/pytest.ini b/tildes/pytest.ini index 5de5104..6162a49 100644 --- a/tildes/pytest.ini +++ b/tildes/pytest.ini @@ -4,3 +4,4 @@ addopts = -p no:cacheprovider filterwarnings = ignore::DeprecationWarning ignore::PendingDeprecationWarning + ignore::yaml.YAMLLoadWarning