9 lines
274 B
Bash
Executable File
9 lines
274 B
Bash
Executable File
#!/bin/bash
|
|
# Test script for the refactored code
|
|
|
|
echo "Testing the refactored code with a dry run (no attachment download)..."
|
|
python3 main.py sync --dry-run
|
|
|
|
echo -e "\nTesting with attachment downloading enabled..."
|
|
python3 main.py sync --dry-run --download-attachments
|