aboutsummaryrefslogtreecommitdiff
path: root/test/wrong_command.c
blob: 8366a9855e3ff87f1bc71d507f329851455b6aca (plain)
1
2
3
4
5
6
7
8
9
#include <stdio.h>

int main(void) {
	fprintf(stderr, "\x1B[31m\e[1m"
		"This is not the command you are looking for.\n"
		"You probably want to run 'python3 -m pytest test/' instead"
		"\e[0m\n");
	return 1;
}