Skip to content

Commit

Permalink
Temporarily disable mypy_samples session
Browse files Browse the repository at this point in the history
  • Loading branch information
plamut committed Dec 17, 2021
1 parent cdf32a0 commit be7a0cd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"lint_setup_py",
"blacken",
"mypy",
"mypy_samples",
# "mypy_samples", # TODO: uncomment when the checks pass"
"pytype",
"docs",
]
Expand Down
6 changes: 4 additions & 2 deletions owlbot.py
Original file line number Diff line number Diff line change
Expand Up @@ -459,11 +459,13 @@ def mypy(session):
# Add mypy_samples nox session.
# ----------------------------------------------------------------------------
s.replace(
"noxfile.py", r'"mypy",', '\g<0>\n "mypy_samples",',
"noxfile.py",
r'"mypy",',
'\g<0>\n # "mypy_samples", # TODO: uncomment when the checks pass',
)
s.replace(
"noxfile.py",
r'session.run\("pytype"\)',
r'session\.run\("pytype"\)',
textwrap.dedent(
''' \g<0>
Expand Down

0 comments on commit be7a0cd

Please sign in to comment.