Pārlūkot izejas kodu

Ignore all deprecation warnings

Getty Ritter 4 gadi atpakaļ
vecāks
revīzija
58845e86c7
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  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