Configure Lint 'TooFewTestSteps' and 'TooFewKeywordSteps' such
that single line for each is acceptable
The default is '2' by default and creates unnecessary warnings
for legitimate cases with single lines
Change-Id: I3246c407abef6ce5d00005f7a850212a7b662437
diff --git a/Makefile b/Makefile
index 28636b0..ce5a833 100644
--- a/Makefile
+++ b/Makefile
@@ -18,7 +18,8 @@
ROOT_DIR:=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
# Variables
-LINT_ARGS ?= --verbose --configure LineTooLong:120 --configure TooManyTestSteps:15
+LINT_ARGS ?= --verbose --configure LineTooLong:120 --configure TooManyTestSteps:15 \
+ --configure TooFewTestSteps:1 --configure TooFewKeywordSteps:1
VERSION ?= $(shell cat ./VERSION)
ROBOT_VAR_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind.yaml