Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit be7a0cd

Browse files
committed
Temporarily disable mypy_samples session
1 parent cdf32a0 commit be7a0cd

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"lint_setup_py",
4747
"blacken",
4848
"mypy",
49-
"mypy_samples",
49+
# "mypy_samples", # TODO: uncomment when the checks pass"
5050
"pytype",
5151
"docs",
5252
]

owlbot.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -459,11 +459,13 @@ def mypy(session):
459459
# Add mypy_samples nox session.
460460
# ----------------------------------------------------------------------------
461461
s.replace(
462-
"noxfile.py", r'"mypy",', '\g<0>\n "mypy_samples",',
462+
"noxfile.py",
463+
r'"mypy",',
464+
'\g<0>\n # "mypy_samples", # TODO: uncomment when the checks pass',
463465
)
464466
s.replace(
465467
"noxfile.py",
466-
r'session.run\("pytype"\)',
468+
r'session\.run\("pytype"\)',
467469
textwrap.dedent(
468470
''' \g<0>
469471

0 commit comments

Comments
 (0)