Skip to content

Commit

Permalink
Make possible testing of libraries when multiple repos are present
Browse files Browse the repository at this point in the history
When the TEST_LIBS is set to 'y', tests have been broken as the
utils/library_path.py returned string like:
   path_to_repo1,path_to_repo2

When running pytest this lead just into the error msg "file not found".
Just use the " " separator so tests could be executed again.
  • Loading branch information
pirat89 authored and Rezney committed Jul 15, 2021
1 parent 7ae72ce commit 76d67bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/library_path.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
repos = find_and_scan_repositories(BASE_REPO, include_locals=True)
repos.load()

print(','.join(repos.libraries))
print(' '.join(repos.libraries))

0 comments on commit 76d67bb

Please sign in to comment.