diff --git a/noxfile.py b/noxfile.py index ceb2f31..647d6c4 100644 --- a/noxfile.py +++ b/noxfile.py @@ -103,6 +103,9 @@ def tests(session: PowerSession, coverage, pkg_specs): except CommandFailed: pass + # Temporary; run pyright to check if it is installed. + session.run2("pyright --version") + # Fail if the assumed python version is not the actual one session.run2("python ci_tools/check_python_version.py %s" % session.python)