-
-
Notifications
You must be signed in to change notification settings - Fork 27
added the windows build for travis CI having py2 interpreter #152
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -31,6 +31,22 @@ env: | |
| # https://docs.travis-ci.com/user/osx-ci-environment/ | ||
| matrix: | ||
| include: | ||
| - os: windows | ||
| language: shell | ||
| before_install: | ||
| - choco install python2 -x86 | ||
| - ln -s /c/Python27/python.exe /c/Python27/python2.7.exe | ||
| env: | ||
| - PATH="/c/Python27:/c/Python27/Scripts:$PATH" | ||
| - TEST_SUITE="$PYTEST" | ||
| - os: windows | ||
| language: shell | ||
| before_install: | ||
| - choco install python2 -x86 | ||
| - ln -s /c/Python27/python.exe /c/Python27/python2.7.exe | ||
|
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We need to create a soft link pointing to |
||
| env: | ||
| - PATH="/c/Python27:/c/Python27/Scripts:$PATH" | ||
| - TEST_SUITE="./etc/release/release.sh" | ||
| - os: osx | ||
| env: TEST_SUITE="$PYTEST" | ||
| language: generic | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -46,8 +46,6 @@ def run_scan_click(options, monkeypatch=None, test_mode=True, expected_rc=0, env | |
| from click.testing import CliRunner | ||
| from deltacode import cli | ||
|
|
||
| options = add_windows_extra_timeout(options) | ||
|
|
||
|
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Currently we do not have the support for adding the cli option --timeout, we may require it for the Appevyor windows CI as it timesout after 120 sec. |
||
| if monkeypatch: | ||
| monkeypatch.setattr(click._termui_impl, 'isatty', lambda _: True) | ||
| monkeypatch.setattr(click , 'get_terminal_size', lambda : (80, 43,)) | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
choco install python2 -x86installs32 bit libsin a32 bitsystem.without
-x86it installs64 bit libsalso which causes error during configuration.ref