Ramon Giovane
Ramon Giovane
What if I have 3 environments? A `development` environment, a `testing` enviroment and a `production` environment. They have different variables, like different database connection strings, different API keys. Should I...
Seria legal se tivesse uma opção para aceitar ou não CPFs com todos os números iguais. Por exemplo o `11111111111`. Eles são de pessoas de verdade, mas se alguém inseriu...
Now I don't know if the problem is with `Queue.enqueue()` or with ` SimpleWorker.work()`. I've already tried `Queue('test_queue', is_async=False)`
Yes. Thanks for the answer. Maybe the issue title is a bit misleading. 😅 I was running some async tests using [Ward](https://ward.readthedocs.io/en/latest/) test framework (I omitted that in the snippet...
Yes, it's indeed relevant, I wish to know what is the official way of using mocks with Ward.
You could write a function like this. ```python def at_every_x_minutes(x: int, start: int = 0, end: int = 59): return {*list(range(start, end, x))} cron_jobs = [ cron( regular_check, minute=at_every_x_minutes(5), run_at_startup=True,...
```js options: { setCellHeaderProps: () => { return { style: {display:'flex', justifyContent:'center' }}}, } ``` This is what worked for me.
I created a codespace and did some experimentation. First, I messed up with an existing test on purpose, adding some chained function calls, just to create some stacktrace. ```python def...
I was doing some investigation myself and I found out that `revision_id` is being lost between calls. More precisely when we call `save_changes()`, the `self` object no longer has `revision_id`:...
Same issue here. https://github.com/BeanieODM/beanie/issues/833 This one has a reproducible snippet.