Christoph Hille

Results 88 comments of Christoph Hille

Using requests with not self signed url: ``` (.venv) $ python3 -c 'import requests; print(requests.get("https://demo.recordsansible.org/api/v1/").json())' {'labels': 'https://demo.recordsansible.org/api/v1/labels', 'playbooks': 'https://demo.recordsansible.org/api/v1/playbooks', 'plays': 'https://demo.recordsansible.org/api/v1/plays', 'tasks': 'https://demo.recordsansible.org/api/v1/tasks', 'hosts': 'https://demo.recordsansible.org/api/v1/hosts', 'latesthosts': 'https://demo.recordsansible.org/api/v1/latesthosts', 'results': 'https://demo.recordsansible.org/api/v1/results', 'files':...

imo best would be to only support pip installations to not get bothered with such problems. Afaik for Ansible best practice is to install from pip anyhow?

There is already a discussion about the future handling of docker files here: https://github.com/ansible-community/ara/issues/352

Hi @paulocoutinhox, I had a similar use case a time ago and build https://github.com/hille721/simple-photo-gallery-bulkcreation. It's kind of an extension to this project which makes it possible to create a galery...

~~This issues seems to be also appear if `other_certificates` is used :/~~ EDIT: I can't reproduce my issue with a generic playbook like used in this issue. Thus forget my...

Please wait with that a bit :)

For now I solved it by simple overwriting the command in my `tox-ansible.ini`: ``` [testenv:sanity-{py3.8,py3.9,py3.10,py3.11}-{2.12,2.13,2.14,2.15,devel}] commands = bash -c 'cd {envdir}/tmp/collections/ansible_collections/ifx/community && ansible-test sanity --local --requirements {posargs}' ``` I can...

I saw you implantation in ansible.scm collection but if you don't like it I won't use it as my best practice example. I also see Molecule as the tool for...

No, I need it for ansible-test, that's why I also not used it before. My question was about the integration tests (`ansible-test integration`), so far I triggered them directly with...

Just had time to look into this with more detail again. I really like the direction in which this is going as this streamlines Ansible collection testing and makes it...