benhoyt / scandir

Better directory iterator and faster os.walk(), now in the Python 3.5 stdlib
https://benhoyt.com/writings/scandir/
BSD 3-Clause "New" or "Revised" License
532 stars 68 forks source link

travis-ci: run py37 tests on xenial #116

Closed ThomasWaldmann closed 5 years ago

ThomasWaldmann commented 5 years ago

@benhoyt I was wondering about that tox-travis in .travis.yml - is it needed or could we just drop it, add all python versions to tox.ini and have it skip missing interpreters?

ThomasWaldmann commented 5 years ago

@benhoyt btw, we could also test on macOS on travis-ci - if you ask the travis-ci guys and they allow it for your project.

benhoyt commented 5 years ago

This is great, thanks. Regarding tox-travis, I'm not sure, though I think it was the easiest way at the time (years ago when I set this up). For macOS support, the Travis docs don't indicate there's anything you have to ask them to enable it, but you can add an "os" key to the .travis.yml with "linux" and "osx", and then add the "osx" options to the matrix: https://docs.travis-ci.com/user/multi-os/ ... feel free to add a PR.