diff options
author | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2020-12-14 09:01:01 +0100 |
---|---|---|
committer | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2020-12-14 09:34:34 +0100 |
commit | fb6fa45799be507a876841c136c1b5e614b1fea0 (patch) | |
tree | add6ce0994eafee7c5c5a9ab76f65aa4a7f1e856 | |
parent | 60d4f77d836338d69819edd9db833802044ea1c0 (diff) | |
download | pylint-git-fb6fa45799be507a876841c136c1b5e614b1fea0.tar.gz |
Fix appveyor bug with the version of astroid not matching the real version
See https://ci.appveyor.com/project/PCManticore/pylint/builds/36810764/job/yifu7v0ky6ea2so4
-rw-r--r-- | tox.ini | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -54,7 +54,7 @@ commands = [testenv] deps = - https://github.com/PyCQA/astroid/tarball/master#egg=astroid-master-2.0 + https://github.com/PyCQA/astroid/tarball/master#egg=astroid coverage<5.0 mccabe # isort 5 is not compatible with Python 3.5 @@ -80,7 +80,7 @@ changedir = {toxworkdir} [testenv:spelling] deps = - https://github.com/PyCQA/astroid/tarball/master#egg=astroid-master-2.0 + https://github.com/PyCQA/astroid/tarball/master#egg=astroid pytest pytest-xdist pyenchant @@ -136,7 +136,7 @@ commands = [testenv:benchmark] deps = - https://github.com/PyCQA/astroid/tarball/master#egg=astroid-master-2.0 + https://github.com/PyCQA/astroid/tarball/master#egg=astroid coverage<5.0 mccabe pytest @@ -159,7 +159,7 @@ commands = [testenv:profile_against_external] deps = - https://github.com/PyCQA/astroid/tarball/master#egg=astroid-master-2.0 + https://github.com/PyCQA/astroid/tarball/master#egg=astroid gprof2dot mccabe pytest |