From 7127ba99e2f7bb108ea3bc0b92097ac02fd02c74 Mon Sep 17 00:00:00 2001 From: Gustaf Rydholm Date: Tue, 25 Jan 2022 18:52:04 +0100 Subject: fix: remove pytype --- noxfile.py | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/noxfile.py b/noxfile.py index d14fefb..d2279eb 100644 --- a/noxfile.py +++ b/noxfile.py @@ -6,7 +6,7 @@ import nox from nox.sessions import Session package = "text-recognizer" -nox.options.sessions = "lint", "mypy", "pytype", "safety", "tests" +nox.options.sessions = "lint", "mypy", "safety", "tests" locations = ( "text_recognizer", "training", @@ -95,14 +95,6 @@ def mypy(session: Session) -> None: session.run("mypy", *args) -@nox.session(python="3.9") -def pytype(session: Session) -> None: - """Type-check using pytype.""" - args = session.posargs or ["--disable=import-error", *locations] - install_with_constraints(session, "pytype") - session.run("pytype", *args) - - @nox.session(python=["3.9"]) def tests(session: Session) -> None: """Run the test suite.""" -- cgit v1.2.3-70-g09d2