aboutsummaryrefslogtreecommitdiff
path: root/test/wrong_command.c
diff options
context:
space:
mode:
authorGravatar Nikolaus Rath <Nikolaus@rath.org>2017-04-10 17:08:58 -0700
committerGravatar Nikolaus Rath <Nikolaus@rath.org>2017-04-10 17:08:58 -0700
commite372d610badaf9ca017a749765faa07312a92c55 (patch)
tree7fa8c8fa8278dc0cbe33610295d29caf5e1488bb /test/wrong_command.c
parent3e1436683402ca285522e05423ea0705707d987d (diff)
Remove 'tests' target in favor of calling py.test directly.
Together with the previous commit, this fixes #156.
Diffstat (limited to 'test/wrong_command.c')
-rw-r--r--test/wrong_command.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/test/wrong_command.c b/test/wrong_command.c
index ef835b3..8366a98 100644
--- a/test/wrong_command.c
+++ b/test/wrong_command.c
@@ -3,8 +3,7 @@
int main(void) {
fprintf(stderr, "\x1B[31m\e[1m"
"This is not the command you are looking for.\n"
- "You probably want to run 'ninja tests' instead "
- "(note the 's' at the end).\n"
- "\e[0m");
+ "You probably want to run 'python3 -m pytest test/' instead"
+ "\e[0m\n");
return 1;
}