How to output to /dev/tty

Hello,

I basically need to output the tests results in the shell before piping it.
Here is the command in my Drone CI step :

go test -v -cover -coverprofile=profile.cov -covermode=atomic ./... | tee /dev/tty | go-junit-report > junit-report.xml

The | tee /dev/tty part doest not work and I got the following error :

tee: 
/dev/tty
: No such device or address

How can I get my command to output to the shell and then be used by go-junit-report

Thanks !