mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
@@ -28,8 +28,11 @@ printfoo = "python -c \"print('foo')\""
|
||||
notfoundscript = "randomthingtotally"
|
||||
appendscript = "cmd arg1"
|
||||
multicommand = "bash -c \"cd docs && make html\""
|
||||
scriptwithenv = "echo $HELLO"
|
||||
""")
|
||||
if os.name == "nt":
|
||||
f.write('scriptwithenv = "echo %HELLO%"\n')
|
||||
else:
|
||||
f.write('scriptwithenv = "echo $HELLO"\n')
|
||||
c = p.pipenv('install')
|
||||
assert c.return_code == 0
|
||||
|
||||
|
||||
Reference in New Issue
Block a user