-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from StackStorm-Exchange/fix-python2.7-tests
Fix Python 2.7 tests
- Loading branch information
Showing
7 changed files
with
77 additions
and
7 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
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
mock>=1.3.0,<2.0 | ||
unittest2>=1.1.0,<2.0 | ||
nose>=1.3.7 |
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,4 +1,15 @@ | ||
mock>=1.3.0,<2.0 | ||
unittest2>=1.1.0,<2.0 | ||
nose>=1.3.7 | ||
|
||
# | ||
# This file is autogenerated by pip-compile | ||
# To update, run: | ||
# | ||
# pip-compile requirements-tests.in | ||
# | ||
argparse==1.4.0 # via unittest2 | ||
funcsigs==1.0.2 # via mock | ||
linecache2==1.0.0 # via traceback2 | ||
mock==1.3.0 # via -r requirements-tests.in | ||
nose==1.3.7 # via -r requirements-tests.in | ||
pbr==5.4.5 # via mock | ||
six==1.15.0 # via mock, unittest2 | ||
traceback2==1.4.0 # via unittest2 | ||
unittest2==1.1.0 # via -r requirements-tests.in |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
manageiq-client>=0.3.0 | ||
|
||
# Pin parsedatetime to < 2.6 avoid this issue on Python 2.7: | ||
# | ||
# https://github.com/bear/parsedatetime/issues/245 | ||
# https://github.com/bear/parsedatetime/issues/246 | ||
# https://github.com/bear/parsedatetime/issues/251 | ||
# | ||
# Waiting on #247 for a proper fix: | ||
# | ||
# https://github.com/bear/parsedatetime/pull/247 - proper fix | ||
# https://github.com/bear/parsedatetime/pull/248 - bad fix | ||
# | ||
parsedatetime<2.6 | ||
|
||
# Can also use environment markers to install different versions for Python 2 | ||
# and Python 3: | ||
#parsedatetime<2.6; python_version < "3" | ||
#parsedatetime; python_version >= "3" | ||
|
||
wait-for<1.1 # Version 1.1 dropped Python 2.7 support |
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,2 +1,17 @@ | ||
manageiq-client>=0.3.0 | ||
wait-for==1.0.14 | ||
# | ||
# This file is autogenerated by pip-compile | ||
# To update, run: | ||
# | ||
# pip-compile requirements.in | ||
# | ||
certifi==2020.6.20 # via requests | ||
chardet==3.0.4 # via requests | ||
idna==2.10 # via requests | ||
iso8601==0.1.12 # via manageiq-client | ||
manageiq-client==0.6.1 # via -r requirements.in | ||
parsedatetime==2.5 # via -r requirements.in, wait-for | ||
requests==2.24.0 # via manageiq-client | ||
simplejson==3.17.2 # via manageiq-client | ||
six==1.15.0 # via manageiq-client, wait-for | ||
urllib3==1.25.10 # via requests | ||
wait-for==1.0.14 # via -r requirements.in, manageiq-client |