Paradox

Paradox

Getting terminal width from within an ExUnit Formatter

I’m writing my own ExUnit formatter, and its dependent on knowing the terminal width to properly output its results.

I make a call to the Erlang io:columns/0 function in the init of my formatter. Instead of giving me a tuple of {:ok, <termwidth>}, I get {:error, :enotsup}. Erlang docs indicate that this is because I’m trying to read the terminal width of a non-tty.

Question is, how can I get the termwidth of the current TTY outputting the results of my ExUnit test run. If they are not being output to a TTY that is acceptable, I can code a fallback.

Marked As Solved

Paradox

Paradox

Had my question answered elsewhere, by José.

Basically the issue is that its not a terminal if it isn’t running inside an iex session.

$> elixir -e "IO.inspect :io.columns"
{:error, :enotsup}

$> iex -e "IO.inspect :io.columns"
Erlang/OTP 21 [erts-10.3.4] [source] [64-bit] [smp:8:8] [ds:8:8:10] [async-threads:1] [hipe]

{:ok, 238}

So for anyone else writing an ExUnit formatter or anything else that needs to get the column count, you have to run within IEx, or manually specify the tty device you’re targeting.

Also Liked

OvermindDL1

OvermindDL1

Ah that’s correct yeah, didn’t know you were running it not in iex. Erlang needs a shell running to pull that information.

Last Post!

OvermindDL1

OvermindDL1

Ah that’s correct yeah, didn’t know you were running it not in iex. Erlang needs a shell running to pull that information.

Where Next?

Popular in Questions Top

vegabook
I’m brand new to Phoenix and I have stripped one of the demo applications to the bone. I just want to get an svg up on the screen. Here i...
New
vonH
In asking this question I am more interested about the expressiveness of the language itself and less concerned about the availability of...
New
belgoros
I’m not a pro in using Regex and can’t figure out why the following behaviour happens, especially if we take into account the difference ...
New
siddhant3030
Hi, I have to write a raw query for one of my project. But till now I have used ecto queries and don’t have much experience writing raw ...
New
WestKeys
Currently suffering from paralysis by [HTTP client] analysis. This is rather unusual in Elixirland as there tends to be consensus on the ...
New
fayddelight
I tried installing elixir 1.11.2 erlang 23.3.4 via asdf in my zsh shell. Enabled the versions locally and globally. When I list them ...
New
svb
Hi! Currently I want to submit a form by pressing the Enter key. However, since my input field is of type “textarea” this is just adds a...
New

Other popular topics Top

nobody
Hi! In PHP: $_SERVER[‘SERVER_ADDR’] - in Elixir? Searched the docs for ip address and the web, no good results. Thanks!
New
JeremM34
Hello, how can I check the Phoenix version ? Thanks !
New
sen
Hi All, I set a environment variables in dev.exs , like below code. when i start server, how can i set the ${enable} value? thanks. d...
New
sergio_101
I am VERY much an elixir newbie. I have taken one elixir course and one phoenix course on Udemy. During that course, I saw the instructor...
New
Patoshizzle
After calling mix ecto.create I get this error: 17:00:32.162 [error] GenServer #PID&lt;0.412.0&gt; terminating ** (Postgrex.Error) FATAL...
New
TunkShif
This post is an instruction guide to help you setup your Neovim for Elixir development from scratch. It includes general information on h...
274 42533 114
New

We're in Beta

About us Mission Statement