Currently I use python docker image, which is common for most python+docker developers. With current CI configuration, you run tests within common ubuntu container, which is nice and tests code like on common configurations(Ubuntu LTS, yea). But! If developer uses docker, he will have no reasons to setup full ubuntu container, just python one, which is available for few latest releases of both branches.
So now I see a bug in gevent 1.0.1 with python>=2.7.9, which blocks process from running by... import exception. And this but wasn't detected because of tests environment.
Yea, production will be ubuntu LTS in most cases, but what about developer environment?
Currently I use
pythondocker image, which is common for most python+docker developers. With current CI configuration, you run tests within common ubuntu container, which is nice and tests code like on common configurations(Ubuntu LTS, yea). But! If developer uses docker, he will have no reasons to setup full ubuntu container, just python one, which is available for few latest releases of both branches.So now I see a bug in
gevent 1.0.1withpython>=2.7.9, which blocks process from running by... import exception. And this but wasn't detected because of tests environment.Yea, production will be ubuntu LTS in most cases, but what about developer environment?