-
Notifications
You must be signed in to change notification settings - Fork 43
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
Test with Python 3.9 and TF 2.5 #490
Conversation
@@ -24,29 +24,36 @@ extend-exclude = docs/notebooks/,.venv | |||
|
|||
[testenv] | |||
basepython = python3.7 | |||
deps = pip~=20.3 | |||
deps = pip |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
will this potentially mean an old pip version will be used?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should use the latest version (which we were explicitly doing anyway in most of the commands via a pip install).
types: pip install -r common_build/types/requirements.txt -c common_build/types/constraints.txt | ||
types: mypy | ||
types: mypy {posargs} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
where from are these {posargs}
coming from?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
They're passed in on the command line. Hence to run the slow tests we can now run "tox -e tests -- --runslow yes" instead of having a whole different tox job. This also lets you run just one test or type check just one file if you want to.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
seems ok to me, just some minor comments
No description provided.