Philippe Pepiot

Results 24 issues of Philippe Pepiot

Hi, first thanks for aptly, this is dope! dput-ng support http/https (PUT) method for uploading changes files. aptly support changes files via "aptly repo include". I wonder if we could...

I wonder if that would be useful to add a "docker-image" backend. This backend would test images instead of containers. For example: ``` testinfra_hosts = ['docker-image://python:2.7'] def test_version(host): asser host.check_output('python...

enhancement

Since we have some support for windows, we should have tests to ensure not breaking things. Maybe https://www.appveyor.com/ could provide this. Since I'm not a windows expert, any help will...

help wanted
windows

Workaround http://pastebin.com/TqGfqVZ3

enhancement

I'd be nice to create custom backend just by giving a path to a script that will actually run commands. ``testinfra -c script:///path/to/mybackend --hosts hostspec`` This would provide a way...

Most of test suites doesn't need fact gathering

I'd be nice to have bidirectionnal intégration between socket and process modules. * which process opened this socket ? * which sockets open this process ? For instance: ``` >>>...

enhancement

For instance: ``` python -m pytest --connection=kitchen # would tests all kitchen defined hosts using ssh python -m pytest --host=kitchen://default-debian-9 # would only test default-debian-9 ``` Connection details (ssh host,...

Example: ```python with host.run('journalctl', background=True) as p: host.run('logger foo') assert 'foo' in p.stdout ``` Where `journalctl` would run and stop after the context manager exit.