Commit fb016549 authored by Peter Parente's avatar Peter Parente

Fix test to use bash for multiple commands

parent c560907e
...@@ -40,7 +40,7 @@ def test_uid_change(container): ...@@ -40,7 +40,7 @@ def test_uid_change(container):
tty=True, tty=True,
user='root', user='root',
environment=['NB_UID=1010'], environment=['NB_UID=1010'],
command=['start.sh', 'id && touch /opt/conda/test-file'] command=['start.sh', 'bash', '-c', 'id && touch /opt/conda/test-file']
) )
# usermod is slow so give it some time # usermod is slow so give it some time
c.wait(timeout=120) c.wait(timeout=120)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment