diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2017-03-12 00:58:21 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2017-03-12 00:59:15 -0800 |
commit | b7717659a14748502a469490f572915c5ebd9c98 (patch) | |
tree | cb06f675c7ce85f207ab9e20c06b298924d4e91a /edit | |
parent | 2c53c3d0a921aec9825946be8dc37eff95b95485 (diff) | |
download | mu-b7717659a14748502a469490f572915c5ebd9c98.tar.gz |
3790
Don't try to snapshot in scenarios.
Diffstat (limited to 'edit')
-rw-r--r-- | edit/005-sandbox.mu | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/edit/005-sandbox.mu b/edit/005-sandbox.mu index 47ca5aec..0bd76338 100644 --- a/edit/005-sandbox.mu +++ b/edit/005-sandbox.mu @@ -182,7 +182,10 @@ def run-sandboxes env:&:environment, resources:&:resources, screen:&:screen -> e } <run-sandboxes-end> +return - $system [./snapshot_lesson] + { + break-if resources # ignore this in tests + $system [./snapshot_lesson] + } ] # load code from disk |