From: Mauro Scomparin Date: Thu, 17 Jan 2019 17:54:24 +0000 (+0100) Subject: added .scompo-ci.json for testing purposes X-Git-Url: https://git.scompo.it/?a=commitdiff_plain;h=d3cea1ff19b14cd118fc3d270070b5c2c582fd46;p=money.git added .scompo-ci.json for testing purposes --- diff --git a/.scompo-ci.json b/.scompo-ci.json new file mode 100644 index 0000000..fe610d8 --- /dev/null +++ b/.scompo-ci.json @@ -0,0 +1,24 @@ +{ + "image": "scompo-ci-base", + "steps": [{ + "name": "clone", + "commands": [ + "git clone http://code.scompo.it:3000/scompo/money.git .", + "git checkout $COMMIT" + ] + }, + { + "name": "install python", + "commands": [ + "apt install -y python3", + "python3 --version" + ] + }, + { + "name": "test", + "commands": [ + "python3 -m unittest -v" + ] + } + ] +}