misc kibo updates for processes

This commit is contained in:
Matthew Gaughan 2023-11-07 16:11:24 -06:00
parent 41c79f0a73
commit 143a4ab17a
2 changed files with 2 additions and 2 deletions

View File

@ -99,4 +99,4 @@ def compute_formality_score(mmt, milestones, lifetime):
return mmt / (milestones / lifetime) return mmt / (milestones / lifetime)
if __name__ == "__main__": if __name__ == "__main__":
main() main()

View File

@ -23,7 +23,7 @@ def main(vcs_path, begin_date):
# this is the primary function for getting the list of commits from perceval # this is the primary function for getting the list of commits from perceval
def get_perceval_log(vcs_path, begin_date): def get_perceval_log(vcs_path, begin_date):
print(vcs_path) print(vcs_path)
repo_dir = '/Users/mgone/Desktop/tmp/' + str(vcs_path[0].split('/')[-1]) repo_dir = '/data/users/mgaughan/tmp/' + str(vcs_path[0].split('/')[-1])
try: try:
#gitpath=repo_dir #gitpath=repo_dir
repo = Git(uri=vcs_path[0], gitpath=repo_dir) repo = Git(uri=vcs_path[0], gitpath=repo_dir)