abalkin / pytest-leaks

A pytest plugin to trace resource leaks.
https://abalkin.github.io/pytest-leaks
Other
115 stars 4 forks source link

enable testing with python 3.6 and 3.7 #19

Closed abalkin closed 5 years ago

abalkin commented 5 years ago

It looks like travis uses ubuntu xenial that is too old to have python 3.6 and 3.7 packages.

One possible solution is to compile python from sources in CI. With a proper caching, it should not be too expensive per build. @pv - what do you think?

abalkin commented 5 years ago

Interesting. Apparently Travis supports ubuntu:bionic, but for some reason it does not install APT packages ...

abalkin commented 5 years ago

This looks better, but to include python 3.5, we need to add a separate job running on ubuntu:xenial.

pv commented 5 years ago

You'll also need to run the pytest3,4,5 environments

abalkin commented 5 years ago

You'll also need to run the pytest3,4,5 environments

I've seen those, but I could not understand what they do. Are these for different versions of pytest?

abalkin commented 5 years ago

@pv - I think I did what you asked for.