Skip to content

Commit 4017814

Browse files
committed
Windows support
1 parent b9bcf74 commit 4017814

File tree

4 files changed

+16
-11
lines changed

4 files changed

+16
-11
lines changed

README.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,4 +183,6 @@ For code checking several CI systems is used in parallel:
183183

184184
1. `Travis CI: <https://travis-ci.org/penguinolog/exec-helpers>`_ is used for checking: PEP8, pylint, bandit, installation possibility and unit tests. Also it's publishes coverage on coveralls.
185185

186-
2. `coveralls: <https://coveralls.io/github/penguinolog/exec-helpers>`_ is used for coverage display.
186+
2. `AppVeyor<https://ci.appveyor.com/project/penguinolog/exec-helpers>`_ is used for checking windows compatibility.
187+
188+
3. `coveralls: <https://coveralls.io/github/penguinolog/exec-helpers>`_ is used for coverage display.

exec_helpers/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
'ExecResult',
4646
)
4747

48-
__version__ = '0.7.2'
48+
__version__ = '0.8.0'
4949
__author__ = "Alexey Stepanov"
5050
__author_email__ = 'penguinolog@gmail.com'
5151
__url__ = 'https://github.com/penguinolog/exec-helpers'

test/test_ssh_client.py

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1321,14 +1321,17 @@ def test_execute_together(self, execute_async, client, policy, logger):
13211321
remotes=remotes, command=command)
13221322

13231323
self.assertEqual(execute_async.call_count, len(remotes))
1324-
chan.assert_has_calls((
1325-
mock.call.status_event.wait(None),
1326-
mock.call.recv_exit_status(),
1327-
mock.call.close(),
1328-
mock.call.status_event.wait(None),
1329-
mock.call.recv_exit_status(),
1330-
mock.call.close()
1331-
))
1324+
self.assertEqual(
1325+
sorted(chan.mock_calls),
1326+
sorted((
1327+
mock.call.status_event.wait(None),
1328+
mock.call.recv_exit_status(),
1329+
mock.call.close(),
1330+
mock.call.status_event.wait(None),
1331+
mock.call.recv_exit_status(),
1332+
mock.call.close()
1333+
))
1334+
)
13321335

13331336
# noinspection PyTypeChecker
13341337
exec_helpers.SSHClient.execute_together(

tools/build-wheels.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,6 @@ for PYTHON in ${PYTHON_VERSIONS}; do
5353
done
5454

5555
find /io/dist/ -type f -not -name "*$package_name*" -delete
56-
rm -rf /io/dist/build
56+
rm -rf /io/build
5757
chmod -v a+rwx /io/dist
5858
chmod -v a+rw /io/dist/*

0 commit comments

Comments
 (0)