Skip to content

Commit dbc61cb

Browse files
authored
Merge pull request #835 from aeliton/fix-tests-for-debian
Tear down tests using python from venv
2 parents a32584f + c111cdf commit dbc61cb

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

ropetest/conftest.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import os
22
import pathlib
3-
import sys
43
from subprocess import check_call
54
from venv import EnvBuilder
65

@@ -105,4 +104,4 @@ def external_fixturepkg(session_venv, session_venv_python_executable):
105104
"ropetest-package-fixtures/external_fixturepkg/dist/external_fixturepkg-1.0.0-py3-none-any.whl",
106105
])
107106
yield
108-
check_call([sys.executable, "-m", "pip", "uninstall", "--yes", "external-fixturepkg"])
107+
check_call([session_venv_python_executable, "-m", "pip", "uninstall", "--yes", "external-fixturepkg"])

0 commit comments

Comments
 (0)