Skip to content

Commit

Permalink
Freeze pytest version requirement to 3.6.4
Browse files Browse the repository at this point in the history
The 3.7.x releases seem to suffer from a regression in tests collection
that affects our linting process. It may have been fixed upstream
already [1]. Freezing requirement to latest 3.6.x for now.

[1] pytest-dev/pytest#3802
  • Loading branch information
Martin Blanchard committed Aug 16, 2018
1 parent 00a9ca5 commit dc7f9e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .pylintrc
Expand Up @@ -7,7 +7,7 @@ extension-pkg-whitelist=

# Add files or directories to the blacklist. They should be base names, not
# paths.
#ignore=CVS,tests,doc
#ignore=tests,docs

# Add files or directories matching the regex patterns to the blacklist. The
# regex matches against base names, not paths.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -89,7 +89,7 @@ def get_cmdclass():
'coverage == 4.4.0',
'moto',
'pep8',
'pytest >= 3.1.0',
'pytest == 3.6.4',
'pytest-cov >= 2.5.0',
'pytest-pep8',
'pytest-pylint',
Expand Down

0 comments on commit dc7f9e0

Please sign in to comment.