From 2939cb9f2ba1b5ff230669a39a5d3795bd9daf79 Mon Sep 17 00:00:00 2001 From: Scott Searcy Date: Thu, 15 Nov 2018 12:11:19 -0800 Subject: [PATCH] Deleted some temporary files that CLI tests were creating. --- tests/test_cli.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/test_cli.py b/tests/test_cli.py index 15c47af8..c8e634e9 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -208,6 +208,7 @@ def test_run(cli): dotenv.set_key(dotenv_path, 'FOO', 'BAR') result = sh.dotenv('run', 'printenv', 'FOO').strip() assert result == 'BAR' + sh.rm(dotenv_path) def test_run_with_other_env(cli): @@ -218,6 +219,7 @@ def test_run_with_other_env(cli): sh.dotenv('--file', DOTENV_FILE, 'set', 'FOO', 'BAR') result = sh.dotenv('--file', DOTENV_FILE, 'run', 'printenv', 'FOO').strip() assert result == 'BAR' + sh.rm(DOTENV_FILE) def test_run_without_cmd(cli):