mirror of
https://github.com/OMGeeky/gpt-pilot.git
synced 2026-01-01 09:00:01 +01:00
11 lines
294 B
Python
11 lines
294 B
Python
from .run_command_until_success import run_command_until_success
|
|
|
|
|
|
def run_test(test_name: str):
|
|
print(f'Running UX test "{test_name}"...')
|
|
|
|
if test_name == 'run_command_until_success':
|
|
return run_command_until_success()
|
|
|
|
print(f'UX test "{test_name}" not found')
|