Skip to content

Commit 31e7908

Browse files
authored
Merge pull request #40 from actinia-org/shell_fix_comparison
2 parents db1e85f + f21d61f commit 31e7908

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests_with_kvdb.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ sleep 10
3030
echo "${ACTINIA_CUSTOM_TEST_CFG}"
3131
echo "${DEFAULT_CONFIG_PATH}"
3232

33-
if [ "$1" == "dev" ]
33+
if [ "$1" = "dev" ]
3434
then
3535
echo "Executing only 'dev' tests ..."
3636
pytest -m "dev"
37-
elif [ "$1" == "integrationtest" ]
37+
elif [ "$1" = "integrationtest" ]
3838
then
3939
pytest -m "integrationtest"
40-
elif [ "$1" == "unittest" ]
40+
elif [ "$1" = "unittest" ]
4141
then
4242
pytest -m "unittest"
4343
else

0 commit comments

Comments
 (0)