Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run tests daily and with all supported python versions #113

Merged
merged 4 commits into from
Aug 23, 2023

Conversation

AngelFP
Copy link
Member

@AngelFP AngelFP commented Aug 18, 2023

This PR makes sure that the tests pass in all currently supported python versions (3.8 - 3.11). Also, since some dependencies like Ax seem to sometimes have breaking changes, the tests will now run daily to make sure we catch any issues with new releases of dependencies.


jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
python-version: [3.8, 3.9, '3.10', 3.11]
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure of the syntax, but do the single quote actually do sth or should this be the same for all versions?

Suggested change
python-version: [3.8, 3.9, '3.10', 3.11]
python-version: [3.8, 3.9, 3.10, 3.11]

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yep, the quotes make it a string. Otherwise YAML interprets it as a double and will read 3.1 instead of 3.10.

@AngelFP AngelFP merged commit bb82069 into main Aug 23, 2023
8 checks passed
@AngelFP AngelFP deleted the test_more_python_versions branch August 23, 2023 10:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants