From aa962c545496fc645d3f78370d7190ae1f3db11e Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Sun, 31 Jan 2021 03:36:45 +0100 Subject: Fixing type annotation for python3.6 compatibility --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 2ce1752..921cf3f 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# minishell test +# minishell test [![Build Status](https://api.travis-ci.com/cacharle/minishell_test.svg?branch=master)](https://travis-ci.com/cacharle/minishell_test) Test for the minishell project of school 42. @@ -8,7 +8,7 @@ Test for the minishell project of school 42. The default path to your project is `../minishell` but you can change it the the [configuration](src/config.py). -```command +``` $ ./run # run all tests $ ./run --help @@ -66,7 +66,7 @@ README.md test.sh With this setup `argv[2]` is what you would usually get in `line` from `get_next_line`. This allows you to set the prompt to whatever you want. -This test works with python >= 3.5. +**This test works with Python3.6 or higher.** ### Environement variables -- cgit