Replies: 1 comment
|
That's a good idea! We should be conscious of environmental impact. Perhaps we don't want to cartesian product the two matrices, and instead run Windows and Mac tests only on the latest Python version, and only run tests for all Python versions on Linux. Maybe: matrix:
include:
- os: ubuntu-latest
python-version: 3.12
- os: ubuntu-latest
python-version: 3.13
- os: macos-latest
python-version: 3.13
- os: windows-latest
python-version: 3.13🤷 Personally, I very rarely test Python libraries against Windows or Mac. I'm trying to think of where earthaccess might have OS-specific behavior and not sure at the moment. Maybe someone who has more experience with Windows/Mac will have more useful thoughts than I do :P |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
The project.toml lists Windows as a supported platform, but the test matrix does not include it. I'm particularly curious because some of the potential users that I hope to benefit from this are working on Windows. The could be updated to include a windows version (or even windows and mac).
All reactions