Dan Hemberger
Dan Hemberger
I noticed that the examples using ansible-vault (e.g. https://github.com/ansible/ansible-lint/blob/main/examples/playbooks/contains_secrets.yml) only encrypt _individual variables_; however, this bug report refers to `vault.yml`, which makes me wonder if the issue is with encrypted...
Thanks for the response! Your suggested patch does indeed fix the more complex conditional case, though the simple case still produces a false negative. I'll see if I can create...
Hi, thanks for the detailed feature request! If you're just looking to retain the current state when you click on a download link, perhaps take a look at `StatefulBrowser.download_link`. This...
Thanks for the suggestion! However, I think it might be misleading to have `StatefulBrowser.links` return an empty list if no page is currently loaded. It's a very different case than...
Ah, I see, thanks for the clarification. Yes, in that case a back button or a state cloning method could be helpful. As a workaround for now, you might be...
I think we're unlikely to see compatibility between pytest and flake8 moving forward (see https://github.com/tholo/pytest-flake8/issues/98). One thing to do would be to run flake8 independently of pytest (I thought I...
Your suggestion sounds good to me! If you feel inspired, please feel free to implement this, otherwise I will revisit it when I have time. Thanks!
Hi, and thanks for your interest in MechanicalSoup! Unfortunately, I have no experience with Kubernetes, and I can't even think of where to start to debug an issue that has...
Sure, I'll look into this today.
Here's my test setup: ```sql CREATE TABLE testing ( id INT PRIMARY KEY AUTO_INCREMENT, my_data JSON NOT NULL, my_bool BOOLEAN NOT NULL ); ``` ```php $db->insert( 'testing', [ 'my_bool' =>...