Results 5 comments of Aidar

Hi! I supported GitLab CI in my own fork of the template. You can take a look at it here: https://github.com/a1d4r/python-package-template/blob/master/%7B%7B%20cookiecutter.project_name.lower().replace('%20'%2C%20'-')%20%7D%7D/.gitlab-ci.yml I won't make a PR to this repo because...

I used this dirty hack. Yet it is quite simple and gets the work done. ```python dependencies = [] if "pytest" not in sys.modules: dependencies.append( Depends( RateLimiter(...) ) ) api_router...

Hi! I supported GitLab CI in my own fork of the template. You can take a look at it here: https://github.com/a1d4r/python-package-template/blob/master/%7B%7B%20cookiecutter.project_name.lower().replace('%20'%2C%20'-')%20%7D%7D/.gitlab-ci.yml I won't make a PR to this repo because...

Hello, Sergey! I've encountered the same problem. I would rather expect sending failing tasks to the dead letter queue rather than ack'ing them. Could you please share a draft PR...

Thank you for the answer. > So technically after such time has passed, the slot should be free In single-threaded applications it should be fine, but when there are multiple...