You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the is_tty_test.TestIsTty the //tests/is_tty.ts file gets run. This file logs the value of Deno.isTTY().stdin. Deno reports true in the Github Actions environment. The same check happens in python by calling stdin.isatty(). This reports false in the Github Actions environment. As these values do not equal the test fails.
Either python or deno are reporting an incorrect value here. What are the qualifications to return true in Deno.isTTY()? I am working on the Github Actions script in this repo: https://github.com/lucacasonato/deno/tree/github-ci.
The text was updated successfully, but these errors were encountered:
This is a blocker for #2863.
In the
is_tty_test.TestIsTty
the//tests/is_tty.ts
file gets run. This file logs the value ofDeno.isTTY().stdin
. Deno reportstrue
in the Github Actions environment. The same check happens in python by callingstdin.isatty()
. This reports false in the Github Actions environment. As these values do not equal the test fails.Either python or deno are reporting an incorrect value here. What are the qualifications to return true in
Deno.isTTY()
? I am working on the Github Actions script in this repo: https://github.com/lucacasonato/deno/tree/github-ci.The text was updated successfully, but these errors were encountered: