Skip to content

Commit

Permalink
. d updated markdown snippets
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Nov 12, 2024
1 parent 6f392dd commit ae7b1ff
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/features.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,5 @@ If you want to set the extension of the approval file, you can now do it through
```py
verify(content, options=Options().for_file.with_extension(".md"))
```
<sup><a href='/tests/test_options.py#L67-L69' title='Snippet source file'>snippet source</a> | <a href='#snippet-options_with_file_extension' title='Start of snippet'>anchor</a></sup>
<sup><a href='/tests/test_options.py#L83-L85' title='Snippet source file'>snippet source</a> | <a href='#snippet-options_with_file_extension' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->
13 changes: 9 additions & 4 deletions tests/test_options.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,15 @@
from approvaltests.utilities.logging import logging_approvals


_approvals_modules = list(sorted(filter(
lambda name: name.startswith("approvaltests.") and name.endswith("approvals"),
sys.modules.keys(),
)))
_approvals_modules = list(
sorted(
filter(
lambda name: name.startswith("approvaltests.")
and name.endswith("approvals"),
sys.modules.keys(),
)
)
)


def test_list_of_modules():
Expand Down

0 comments on commit ae7b1ff

Please sign in to comment.