forked from openshift/openshift-ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tox tests: pin test requirement versions
Tests once again randomly broke due to a PyPi release. This makes req versions explicit so they only change deliberately.
- Loading branch information
Showing
3 changed files
with
16 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,14 @@ | ||
# Versions are pinned to prevent pypi releases arbitrarily breaking | ||
# tests with new APIs/semantics. We want to update versions deliberately. | ||
|
||
# flake8 must be listed before pylint to avoid dependency conflicts | ||
flake8 | ||
flake8-mutable | ||
flake8-print | ||
pylint | ||
setuptools-lint | ||
yamllint | ||
coverage | ||
mock | ||
pytest | ||
pytest-cov | ||
flake8==3.3.0 | ||
flake8-mutable==1.1.0 | ||
flake8-print==2.0.2 | ||
pylint==1.6.5 | ||
setuptools-lint==0.5.2 | ||
yamllint==1.6.1 | ||
coverage==4.3.4 | ||
mock==2.0.0 | ||
pytest==3.0.7 | ||
pytest-cov==2.4.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters