Skip to content
This repository has been archived by the owner on Jan 12, 2021. It is now read-only.

Commit

Permalink
fix venv destroy test
Browse files Browse the repository at this point in the history
  • Loading branch information
orsinium committed Apr 5, 2019
1 parent bd7e008 commit 59d6a93
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_commands/test_venv_destroy.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import sys
from pathlib import Path

from dephell.commands import VenvDestroyCommand
Expand All @@ -9,7 +10,7 @@ def test_venv_destroy_command(temp_path: Path):
venv_path = temp_path / 'venv'
venv = VEnv(path=venv_path)
assert venv.exists() is False
assert venv.create()
venv.create(python_path=sys.executable)

config = Config()
config.attach({
Expand Down

0 comments on commit 59d6a93

Please sign in to comment.