From 17e107388cdf5ecd27fe0bbc0d79fe997d5bb524 Mon Sep 17 00:00:00 2001 From: checktheroads Date: Sun, 16 Jun 2019 20:22:46 -0700 Subject: [PATCH] switched from nohup to /dev/null for flask dev server --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index d596a0f..7c0cd26 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,7 +12,7 @@ install: before_script: - bash ./ci/check_code.sh script: - - nohup python3 ./ci/ci_test_prepare.py & + - python3 ./ci/ci_test_prepare.py > /dev/null - python3 ./ci/ci_test.py after_script: - bash ./ci/ci_commit.shs