-
Notifications
You must be signed in to change notification settings - Fork 150
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrated exit code to HostOutput property. Added tests. Updated output generation for existing commands via get_last_output Updated travis cfg, osx wheels Updated changelog, readme and docs
- Loading branch information
Showing
15 changed files
with
309 additions
and
262 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,25 @@ | ||
#!/bin/bash -xe | ||
|
||
pip3 install -U virtualenv | ||
python3 -m virtualenv -p "$(which python3)" venv | ||
|
||
set +x | ||
source venv/bin/activate | ||
set -x | ||
|
||
python -V | ||
pip3 install -U setuptools pip | ||
pip3 install -U delocate wheel | ||
python3 setup.py bdist_wheel | ||
delocate-listdeps dist/*.whl | ||
delocate-wheel -v -w wheels dist/*.whl | ||
delocate-listdeps wheels/*.whl | ||
|
||
ls -l wheels/*.whl | ||
pip3 install -v wheels/*.whl | ||
pwd; mkdir -p temp; cd temp; pwd | ||
python3 -c "from pssh.clients import ParallelSSHClient" | ||
cd ..; pwd | ||
set +x | ||
deactivate | ||
set -x |
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
Oops, something went wrong.