Skip to content
Snippets Groups Projects
Commit 87adcc70 authored by Philip ABBET's avatar Philip ABBET
Browse files

[tests] Don't force the name of docker containers: it fails when CI runs several builds in parallel

parent 84891828
No related branches found
No related tags found
No related merge requests found
......@@ -131,7 +131,7 @@ class AsyncTest(unittest.TestCase):
"import time; time.sleep(5)",
"print('After')",
]),
], name='memory_limit', virtual_memory_in_megabytes=4) as p:
], virtual_memory_in_megabytes=4) as p:
time.sleep(2)
stats = p.statistics()
......@@ -153,7 +153,7 @@ class AsyncTest(unittest.TestCase):
"import time; time.sleep(5)",
"print('After')",
]),
], name='memory_limit2', virtual_memory_in_megabytes=100) as p:
], virtual_memory_in_megabytes=100) as p:
time.sleep(2)
stats = p.statistics()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment