You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/pysonar_scanner/__main__.py
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -50,6 +50,9 @@ def scan():
50
50
51
51
defdo_scan():
52
52
app_logging.setup()
53
+
logging.info(
54
+
"Enhance your workflow: Pair pysonar with SonarQube Server per your license or SonarQube Cloud for deeper analysis, and try SonarQube-IDE in your favourite IDE."
55
+
)
53
56
logging.info("Starting Pysonar, the Sonar scanner CLI for Python")
@@ -84,6 +87,15 @@ def test_minimal_success_run(self, run_mock, create_jre_mock, provision_mock, lo
84
87
85
88
self.assertEqual(expected_config, config)
86
89
90
+
info_logs= [
91
+
call(
92
+
"Enhance your workflow: Pair pysonar with SonarQube Server per your license or SonarQube Cloud for deeper analysis, and try SonarQube-IDE in your favourite IDE."
93
+
),
94
+
call("Starting Pysonar, the Sonar scanner CLI for Python"),
0 commit comments