mirror of
https://github.com/beetbox/beets.git
synced 2026-01-17 21:52:34 +01:00
Test completion with clean bash instance
This commit is contained in:
parent
4c00e52455
commit
81a28198aa
1 changed files with 2 additions and 2 deletions
|
|
@ -750,8 +750,8 @@ class CompletionTest(_common.TestCase):
|
|||
'test_completion.sh')
|
||||
|
||||
# Tests run in bash
|
||||
shell = os.environ.get('BEETS_TEST_SHELL', '/bin/bash')
|
||||
tester = subprocess.Popen(shell, stdin=subprocess.PIPE,
|
||||
shell = os.environ.get('BEETS_TEST_SHELL', '/bin/bash --norc')
|
||||
tester = subprocess.Popen(shell.split(' '), stdin=subprocess.PIPE,
|
||||
stdout=subprocess.PIPE)
|
||||
|
||||
# Load complection script
|
||||
|
|
|
|||
Loading…
Reference in a new issue