Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions convert_test_files.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ for file in "$TEST_DIR"/*.rm; do

# Run first test command
echo "Running test markdown..."
rmc -t markdown "$file" -o "$OUTPUT_DIR/markdown/$file_name.md"
poetry run rmc -t markdown "$file" -o "$OUTPUT_DIR/markdown/$file_name.md"

# Run second test command
echo "Running test svg..."
rmc -t svg "$file" -o "$OUTPUT_DIR/svg/$file_name.svg"
poetry run rmc -t svg "$file" -o "$OUTPUT_DIR/svg/$file_name.svg"

# Run third test command
echo "Running test pdf..."
rmc -t pdf "$file" -o "$OUTPUT_DIR/pdf/$file_name.pdf"
poetry run rmc -t pdf "$file" -o "$OUTPUT_DIR/pdf/$file_name.pdf"

echo "----------------------------------------"
fi
Expand Down
Loading