瀏覽代碼

Ignore all deprecation warnings

Getty Ritter 4 年之前
父節點
當前提交
58845e86c7
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      tasks.py

+ 1 - 1
tasks.py

@@ -5,7 +5,7 @@ from invoke import task
 @task
 def test(c):
     """Run all the provided tests"""
-    c.run("poetry run python -m pytest tests/*.py")
+    c.run("poetry run python -m pytest tests/*.py -W ignore::DeprecationWarning")
 
 
 @task