-
Notifications
You must be signed in to change notification settings - Fork 666
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Also adds a `pip check` execution for testing that there are no conflicts after instalation of all requirements. Temporary the exit code returned by `pip check` is ignored as we have a known conflict caused by `ansible[azure]` dependency. Avoids installing lxc on MacOS(Darwin) to avoid test failures as lxc does not even compile on that platform. Forces pytest<4.0.0 because one plugin does not support it yet but includes comment so we can fix that as soon the plugin is updated. Fixes: #1831 Signed-off-by: Sorin Sbarnea <[email protected]>
- Loading branch information
Showing
4 changed files
with
31 additions
and
28 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
-r lint-requirements.txt | ||
ansible-lint>=4.0.2,<5 | ||
anyconfig==0.9.7 | ||
cerberus==1.2 | ||
click==6.7 | ||
click-completion==0.3.1 | ||
colorama==0.3.9 | ||
cookiecutter==1.6.0 | ||
anyconfig>=0.9.7 | ||
cerberus>=1.2 | ||
click>=6.7 | ||
click-completion>=0.3.1 | ||
colorama>=0.3.9 | ||
cookiecutter>=1.6.0 | ||
idna<2.8 # because indirect dependency "requests" conflict with it now | ||
python-gilt==1.2.1 | ||
Jinja2==2.10 | ||
pbr==5.1.1 | ||
pexpect==4.6.0 | ||
psutil==5.4.6; sys_platform!="win32" and sys_platform!="cygwin" | ||
PyYAML==3.13 | ||
sh==1.12.14 | ||
six==1.11.0 | ||
tabulate==0.8.2 | ||
testinfra==1.19.0 | ||
tree-format==0.1.2 | ||
python-gilt>=1.2.1 | ||
Jinja2>=2.10 | ||
pbr>=5.1.1 | ||
pexpect>=4.6.0 | ||
psutil>=5.4.6; sys_platform!="win32" and sys_platform!="cygwin" | ||
PyYAML>=3.13 | ||
sh>=1.12.14 | ||
six>=1.11.0 | ||
tabulate>=0.8.2 | ||
testinfra>=1.19.0 | ||
tree-format>=0.1.2 |
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,14 +1,14 @@ | ||
mock==2.0.0 | ||
pur==5.2.1 | ||
pytest==3.6.0 | ||
pytest-cov==2.6.0 | ||
pytest-helpers-namespace==2019.1.8 | ||
pytest-mock==1.10.0 | ||
pytest-verbose-parametrize==1.4.0 | ||
pytest-xdist==1.26.0 | ||
mock>=2.0.0 | ||
pur>=5.2.1 | ||
pytest>=3.6.0,<4.0.0 # until pytest-verbose-parametrize supports it | ||
pytest-cov>=2.6.0 | ||
pytest-helpers-namespace>=2019.1.8 | ||
pytest-mock>=1.10.0 | ||
pytest-verbose-parametrize>=1.4.0 | ||
pytest-xdist>=1.26.0 | ||
# The error was: KeyError: 'created_at' | ||
shade==1.22.2 | ||
shade>=1.22.2 | ||
twine | ||
wheel==0.30.0 | ||
wheel>=0.30.0 | ||
yapf>=0.25.0,<2 | ||
https://github.com/AndreLouisCaron/tox-tags/archive/master.zip#egg=tox-tags |
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