From 05474e806c9442966154065604589e9be6c703d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emil=20Ahlb=C3=A4ck?= Date: Sat, 17 Jun 2023 15:21:13 +0200 Subject: [PATCH] make unit tests default --- gpt_engineer/steps.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gpt_engineer/steps.py b/gpt_engineer/steps.py index 8729ed1..11cfc0f 100644 --- a/gpt_engineer/steps.py +++ b/gpt_engineer/steps.py @@ -125,8 +125,8 @@ def execute_workspace(ai: AI, dbs: DBs): # Different configs of what steps to run STEPS = { - "default": [run, execute_workspace], - 'unit_tests': [gen_spec, pre_unit_tests, run_clarified], + 'default': [gen_spec, pre_unit_tests, run_clarified, execute_workspace], + 'simple': [run, execute_workspace], 'clarify': [clarify, run_clarified], }