Etienne Monier

Results 24 comments of Etienne Monier

Hi, This does not work. I had forgotten to tell you I've got a `.ledgerrc`file which contains: ``` --file ***/personal.ledger --pedantic --input-date-format %d/%m/%Y --date-format %d/%m/%Y ``` It seems this is...

Ok for the file. The ledger `--date-format` is for output date format only. To specify the file format, I must use `--input-date-format`. Similarly, @kevinjfoley 's implementation only permit to format...

up :) Is there an option for that ?

I'll be more explicit. I defined a template vue based ont the following file: ``` {{ icon }} Select All export default { computed: { allSelected() { return this.selected.length ===...

This is solved by [this MR](https://github.com/mariobuikhuizen/voila-vuetify/commit/70441763d9039dff2fe044f61a7651769a2151d4)

I saw this strange error. This is hardcoded in `tests/test_s3.py`, which is cat-ed above.

Here are the logs for the modified code: ``` $ pytest -v ============================= test session starts ============================== platform linux -- Python 3.9.12, pytest-7.1.1, pluggy-1.0.0 -- /usr/local/bin/python cachedir: .pytest_cache rootdir: /test-bug-boto3-on-ci...

Ok, after some searches, the problem comes from my company proxy. The problem is that it seems boto3 does not catch `no_proxy` environment variable. I must specify it as a...

The workaround was given in my previous comment. That's to explicitly tell boto3 not to consider proxies. This is due to non-considering `NO_PROXY` environment variable.