We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7f1e7a commit 2c5c406Copy full SHA for 2c5c406
1 file changed
tests/test_cli.py
@@ -1,8 +1,9 @@
1
import six
2
import subprocess
3
+import sys
4
5
def test_console_script():
- command = ['python', '-m', 'textile', 'README.textile']
6
+ command = [sys.executable, '-m', 'textile', 'README.textile']
7
try:
8
result = subprocess.check_output(command)
9
except AttributeError:
0 commit comments