From d3cea1ff19b14cd118fc3d270070b5c2c582fd46 Mon Sep 17 00:00:00 2001 From: Mauro Scomparin Date: Thu, 17 Jan 2019 18:54:24 +0100 Subject: [PATCH] added .scompo-ci.json for testing purposes --- .scompo-ci.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .scompo-ci.json 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" + ] + } + ] +} -- 2.25.1