Skip to content

Commit

Permalink
Deleted some temporary files that CLI tests were creating.
Browse files Browse the repository at this point in the history
  • Loading branch information
smsearcy authored and bbc2 committed Dec 30, 2018
1 parent f9863d3 commit cf9bd1f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,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):
Expand All @@ -265,6 +266,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):
Expand Down

0 comments on commit cf9bd1f

Please sign in to comment.