diff options
Diffstat (limited to 'test/unit/check/go.py')
-rw-r--r-- | test/unit/check/go.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/unit/check/go.py b/test/unit/check/go.py index dd2150eb..35b0c2d5 100644 --- a/test/unit/check/go.py +++ b/test/unit/check/go.py @@ -25,5 +25,8 @@ def check_go(current_dir, temp_dir, test_dir): if process.returncode == 0: return True + except KeyboardInterrupt: + raise + except: return None |