This is an automated email from the ASF dual-hosted git repository. kaxilnaik pushed a commit to branch v1-10-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 6f8b0ccd88a8f69b7f6efbc68adee15791daae72 Author: Felix Uellendall <[email protected]> AuthorDate: Wed Jul 29 10:45:34 2020 +0200 Set pytest version to be < 6.0.0 due to breaking changes (#10043) The latest pytest version 6.0.0 released yesterday (2020-07-28) does not work in conjunction with the version of pylint (2.4.3) we are using. (cherry picked from commit 2e0d91d8eb9bcae1886358791917b953330a957f) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 35323d2..cc0f721 100644 --- a/setup.py +++ b/setup.py @@ -422,7 +422,7 @@ devel = [ 'paramiko', 'pre-commit', 'pysftp', - 'pytest', + 'pytest<6.0.0', # FIXME: pylint complaining for pytest.mark.* on v6.0 'pytest-cov', 'pytest-instafail', 'pytest-rerunfailures',
