Renamed the repo

This commit is contained in:
Zvonimir Sabljic
2023-08-16 14:57:55 +02:00
parent 2b77799dba
commit fcaae0d300
91 changed files with 25 additions and 9 deletions

7
.gitignore vendored
View File

@@ -161,10 +161,7 @@ cython_debug/
# Logger
/euclid/logger/debug.log
/pilot/logger/debug.log
# workspace
workspace
#dev
/euclid/brija.py
workspace

View File

@@ -1,4 +1,4 @@
DB_NAME = 'euclid'
DB_NAME = 'pilot'
DB_HOST = 'localhost'
DB_PORT = '5432'
DB_USER = 'admin'

View File

@@ -31,7 +31,6 @@ class Project:
'last_development_step': None,
}
# TODO make flexible
# self.root_path = get_parent_folder('euclid')
self.root_path = ''
self.skip_until_dev_step = None
self.skip_steps = None

View File

@@ -223,7 +223,7 @@ class Developer(Agent):
elif test_type == 'manual_test':
# TODO make the message better
user_feedback = self.project.ask_for_human_intervention(
'Message from Euclid: I need your help. Can you please test if this was successful?',
'Message from Pilot: I need your help. Can you please test if this was successful?',
manual_test_description
)
if user_feedback is not None:

19
pilot/requirements.txt Normal file
View File

@@ -0,0 +1,19 @@
blessed==1.20.0
certifi==2023.5.7
charset-normalizer==3.2.0
distro==1.8.0
idna==3.4
inquirer==3.1.3
Jinja2==3.1.2
MarkupSafe==2.1.3
psycopg2==2.9.6
python-dotenv==1.0.0
python-editor==1.0.4
readchar==4.0.5
regex==2023.6.3
requests==2.31.0
six==1.16.0
termcolor==2.3.0
tiktoken==0.4.0
urllib3==2.0.4
wcwidth==0.2.6

View File

@@ -12,7 +12,7 @@ def get_parent_folder(folder_name):
def setup_workspace(project_name):
root = get_parent_folder('euclid')
root = get_parent_folder('pilot')
create_directory(root, 'workspace')
project_path = create_directory(os.path.join(root, 'workspace'), project_name)
create_directory(project_path, 'tests')

View File

@@ -19,3 +19,4 @@ termcolor==2.3.0
tiktoken==0.4.0
urllib3==2.0.4
wcwidth==0.2.6
yaspin==2.4.0