Use coverage analyze as default task

Signed-off-by: Przemek Stekiel <przemyslaw.stekiel@mobica.com>
diff --git a/tests/scripts/analyze_outcomes.py b/tests/scripts/analyze_outcomes.py
index f5d2ac1..1100086 100755
--- a/tests/scripts/analyze_outcomes.py
+++ b/tests/scripts/analyze_outcomes.py
@@ -140,9 +140,9 @@
 def main():
     try:
         parser = argparse.ArgumentParser(description=__doc__)
-        parser.add_argument('--outcomes', metavar='OUTCOMES.CSV',
+        parser.add_argument('outcomes', metavar='OUTCOMES.CSV',
                             help='Outcome file to analyze')
-        parser.add_argument('--task',
+        parser.add_argument('--task', default='analyze_coverage',
                             help='Analyze to be done: analyze_coverage or analyze_driver_vs_reference')
         parser.add_argument('--components',
                             help='List of test components to compare. Must be exactly 2 in valid order: driver,reference. '