Skip to content

Commit

Permalink
increase memory
Browse files Browse the repository at this point in the history
  • Loading branch information
henrypinkard committed Jun 14, 2024
1 parent 59ece1b commit 8e14f13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pycromanager/test/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def launch_mm_headless(request, install_mm):
java_loc = os.environ["JAVA"]

start_headless(mm_install_dir, config_file, java_loc=java_loc,
buffer_size_mb=128, max_memory_mb=128, # set these low for github actions
buffer_size_mb=2048, max_memory_mb=2048, # set these low for github actions
debug=True)

yield
Expand All @@ -171,7 +171,7 @@ def launch_mm_headless(request, install_mm):
else: # python backend
config_file = os.path.join(mm_install_dir, 'MMConfig_demo.cfg')
start_headless(mm_install_dir, config_file,
buffer_size_mb=128, max_memory_mb=128, # set these low for github actions
buffer_size_mb=2048, max_memory_mb=2048, # set these low for github actions
python_backend=True,
debug=True)
yield
Expand Down

0 comments on commit 8e14f13

Please sign in to comment.