Skip to content

Commit

Permalink
test: fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
krrishdholakia committed Nov 26, 2024
1 parent 63416e4 commit 7947248
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/documentation_tests/test_env_keys.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@

# Find the section titled "general_settings - Reference"
general_settings_section = re.search(
r"### environment variables - Reference(.*?)###", content, re.DOTALL
r"### environment variables - Reference(.*?)(?=\n###|\Z)",
content,
re.DOTALL | re.MULTILINE,
)
print(f"general_settings_section: {general_settings_section}")
if general_settings_section:
Expand Down

0 comments on commit 7947248

Please sign in to comment.