Skip to content

Commit

Permalink
add more smoke tests and justify them
Browse files Browse the repository at this point in the history
  • Loading branch information
marph91 committed Oct 19, 2024
1 parent 565631a commit 087f8fc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,18 @@ jobs:
files: ./dist/jimmy*
- name: Smoke test
run: |
# pandoc and asciidoc converter
./dist/jimmy-cli* test/data/test_data/default_format/arbitrary_folder
# filters and frontmatter module
./dist/jimmy-cli* test/data/test_data/obsidian/test_1 --format obsidian
./dist/jimmy-cli* test/data/test_data/obsidian/test_1 --format obsidian --exclude-tags "*"
./dist/jimmy-cli* test/data/test_data/obsidian/test_1 --format obsidian --include-notes-with-tags "*"
./dist/jimmy-cli* test/data/test_data/obsidian/test_1 --format obsidian --include-notes "Second sample note" "Sample note"
# textbundle converter called from bear converter
./dist/jimmy-cli* test/data/test_data/bear/test_1/backup.bear2bk --format bear
# cryptography module
./dist/jimmy-cli* test/data/test_data/colornote/test_1/colornote-20241014.backup --format colornote --password 1234
# sqlite3 module
./dist/jimmy-cli* test/data/test_data/qownnotes/test_1/note_folder --format qownnotes
# pyyaml module
./dist/jimmy-cli* test/data/test_data/rednotebook/test_2/RedNotebook-Backup-2024-09-15.zip --format rednotebook
2 changes: 1 addition & 1 deletion src/formats/zim.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Convert TiddlyWiki notes to the intermediate format."""
"""Convert Zim Wiki notes to the intermediate format."""

import datetime as dt
from pathlib import Path
Expand Down

0 comments on commit 087f8fc

Please sign in to comment.