From 062361a2c1776188d8d7f725ca22e6fe7e7fcbc7 Mon Sep 17 00:00:00 2001 From: u79923 Date: Mon, 10 Jul 2023 14:30:16 +1000 Subject: [PATCH] Troubleshoot load all vocabs test workflow. --- scripts/load_all_vocabs.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/load_all_vocabs.py b/scripts/load_all_vocabs.py index d3e519f..b67105a 100644 --- a/scripts/load_all_vocabs.py +++ b/scripts/load_all_vocabs.py @@ -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 = []