Skip to content

Commit 29d7756

Browse files
committed
[PLUTO-1412] test init
1 parent 208cfb3 commit 29d7756

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

cmd/init.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -541,7 +541,6 @@ func createLizardConfigFile(toolsConfigDir string, patternConfiguration []domain
541541
var patterns []domain.PatternDefinition
542542

543543
if len(patternConfiguration) == 0 {
544-
fmt.Println("Using default Lizard configuration")
545544
var err error
546545
patterns, err = tools.FetchDefaultEnabledPatterns(Lizard)
547546
if err != nil {

integration-tests/run.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,13 @@ compare_files() {
2121
echo "$label/$filename matches expected"
2222
else
2323
echo "$label/$filename does not match expected"
24+
echo "=== Expected file content ==="
25+
cat "$file"
26+
echo "=== Actual file content ==="
27+
cat "$actual_dir/$filename"
28+
echo "=== Diff output ==="
29+
diff "$file" "$actual_dir/$filename" || true
30+
echo "==================="
2431
exit 1
2532
fi
2633
fi

0 commit comments

Comments
 (0)