Closed davidvalaz closed 3 years ago
I am getting this error when using Neovim Nightly (Lua) with PyTest via Docker. Moving my cursor over the title of the test throws out a box with "The input device is not a TTY"
My config is:
g['test#python#runner'] = 'pytest' g['test#python#pytest#options'] = '--color=yes' g['test#python#pytest#executable'] = 'docker-compose -f "./docker-compose.yml" exec -w /usr/src/app web pytest'
I solved it by adding a -T to the Docker command:
-T
g['test#python#pytest#executable'] = 'docker-compose -f "./docker-compose.yml" exec -T -w /usr/src/app web pytest'
Ah good to know thank you!
I am getting this error when using Neovim Nightly (Lua) with PyTest via Docker. Moving my cursor over the title of the test throws out a box with "The input device is not a TTY"
My config is: