From ab70334e7232346673eb6a4e8ada0579156d88e4 Mon Sep 17 00:00:00 2001 From: jlope2 Date: Mon, 19 Sep 2016 13:24:28 +0200 Subject: [PATCH 1/2] Installation tutorial: dependencies updated --- docs/source/installation.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/source/installation.rst b/docs/source/installation.rst index cff2ee422..3e3fd3007 100644 --- a/docs/source/installation.rst +++ b/docs/source/installation.rst @@ -7,7 +7,8 @@ How to install The Autosubmit code is maintained in *PyPi*, the main source for python packages. -- Pre-requisties: These packages (bash, python2, sqlite3, git-scm > 1.8.2, subversion) must be available at local host machine. These packages (argparse, dateutil, pyparsing, numpy, pydotplus, matplotlib, paramiko) must be available for python runtime. +- Pre-requisties: These packages (bash, python2, sqlite3, git-scm > 1.8.2, subversion, dialog and GraphViz) must be available at local host machine. +These packages (argparse, python-dateutil, pyparsing, numpy, pydotplus, matplotlib, paramiko, saga-python, python2-pythondialog and portalocker) must be available for python runtime. .. important:: The host machine has to be able to access HPC's/Clusters via password-less ssh. -- GitLab From 7515689d333131498187fd2be43a6d6594d61df0 Mon Sep 17 00:00:00 2001 From: jlope2 Date: Fri, 23 Sep 2016 12:08:40 +0200 Subject: [PATCH 2/2] Added GitlabCI YAML --- .gitlab-ci.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 000000000..5aba80c11 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,5 @@ +test: + script: + - pip install -e . + - pip install nose + - nosetests test/unit \ No newline at end of file -- GitLab