tests: run: Add type annotations. #1076
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What does this PR do?
Adds type annotations to the
test_run.py
file. Includes this file under therun-mypy
tool to type-check.Tested?
Commit flow
This commit adds paramter and return type annotations or hints to the
test_run.py
file, that contains tests for it's counterpartrun.py
from the
zulipterminal
module, to make mypy checks consistent andimprove code readability.
This commit adds a new "tests" key to the
repo_python_files
dict tolet mypy know which files to type check. A new list,
type_consistent_testfiles
is also added, to hold the list of testfiles that have been type-annotated incrementally till all the test
files are consistent.
Notes & Questions
I've referred to the
pytest
andpytest-mock
docs for the type annotations on some of the fixtures, is a reference link in the commit necessary? (one reference would then be to a CHANGELOG)