From 862e79635065891e7e9ef5ea7957235b154ac3db Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Sun, 31 Jan 2021 14:48:13 +0100 Subject: Updated travis ci to runs the test on a project to see if the test doesn't crash --- .travis.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index d547937..1c3d705 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,10 +7,13 @@ python: install: - pip install -r requirements.txt - # - git clone https://ouaisbrefbams/minishell ../minishell + - git clone --recurse-submodule https://github.com/ouaisbrefbams/minishell ../minishell + - sed -i 's/-Werror//' ../minishell/Makefile ../minishell/libft/Makefile + - sudo apt update + - sudo apt install valgrind script: - python -m flake8 - python -m mypy src - # - ./run - # - ./run -k echo + - ./run + - ./run -k pwd -- cgit