libfuse
wrong_command.c
1 #include <stdio.h>
2 
3 int main(void) {
4  fprintf(stderr, "\x1B[31m\e[1m"
5  "This is not the command you are looking for.\n"
6  "You probably want to run 'python3 -m pytest test/' instead"
7  "\e[0m\n");
8  return 1;
9 }