Skip to content

Commit

Permalink
Troubleshoot load all vocabs test workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
vedgell committed Jul 10, 2023
1 parent 92a22d6 commit 062361a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/load_all_vocabs.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@

BASE_DB_URI = os.environ.get("BASE_DB_URI", None)
ENDPOINT = f"{BASE_DB_URI}/statements"
print(ENDPOINT)
DB_USERNAME = os.environ.get("DB_USERNAME", None)
DB_PASSWORD = os.environ.get("DB_PASSWORD", None)

# get a list of pathname strings of all the turtle files in the vocabularies folder
voc_strings = glob.glob(str(Path(__file__).parent.parent / "vocabularies") + "/*.ttl")
print(voc_strings)
# print(voc_strings)

# build a list of Path objects using the pathname strings
voc_paths = []
Expand Down

0 comments on commit 062361a

Please sign in to comment.