You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2021/03/03 09:37:47 UTC

[airflow] 21/28: Update to Pytest 6.0 (#14065)

This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch v2-0-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit c34898b7886264439d667acfc9d003352e90e16f
Author: Ash Berlin-Taylor <as...@firemirror.com>
AuthorDate: Thu Feb 4 12:57:51 2021 +0000

    Update to Pytest 6.0 (#14065)
    
    And pytest 6 removed a class that the rerunfailures plugin was using, so
    we have to upgrade that too.
    
    (cherry picked from commit 10c026cb7a7189d9573f30f2f2242f0f76842a72)
---
 setup.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/setup.py b/setup.py
index 7beb684..cd38ef2 100644
--- a/setup.py
+++ b/setup.py
@@ -506,10 +506,10 @@ devel = [
     'pre-commit',
     'pylint',
     'pysftp',
-    'pytest',
+    'pytest~=6.0',
     'pytest-cov',
     'pytest-instafail',
-    'pytest-rerunfailures',
+    'pytest-rerunfailures~=9.1',
     'pytest-timeouts',
     'pytest-xdist',
     'pywinrm',