diff --git a/tests/documentation_tests/test_env_keys.py b/tests/documentation_tests/test_env_keys.py index 2c81788ff..076037351 100644 --- a/tests/documentation_tests/test_env_keys.py +++ b/tests/documentation_tests/test_env_keys.py @@ -45,7 +45,9 @@ print(env_keys) # Parse the documentation to extract documented keys repo_base = "./" print(os.listdir(repo_base)) -docs_path = "./docs/my-website/docs/proxy/configs.md" # Path to the documentation +docs_path = ( + "../docs/my-website/docs/proxy/config_settings.md" # Path to the documentation +) documented_keys = set() try: with open(docs_path, "r", encoding="utf-8") as docs_file: diff --git a/tests/documentation_tests/test_general_setting_keys.py b/tests/documentation_tests/test_general_setting_keys.py index 296c5c403..c207de675 100644 --- a/tests/documentation_tests/test_general_setting_keys.py +++ b/tests/documentation_tests/test_general_setting_keys.py @@ -34,7 +34,9 @@ for root, dirs, files in os.walk(repo_base): # Parse the documentation to extract documented keys repo_base = "./" print(os.listdir(repo_base)) -docs_path = "./docs/my-website/docs/proxy/configs.md" # Path to the documentation +docs_path = ( + "./docs/my-website/docs/proxy/config_settings.md" # Path to the documentation +) documented_keys = set() try: with open(docs_path, "r", encoding="utf-8") as docs_file: