From 5d05619681fcfda1edfcd7f6885d28e25a310903 Mon Sep 17 00:00:00 2001 From: Kevin Date: Mon, 2 Jul 2018 20:01:49 +0000 Subject: [PATCH 1/3] + added gitlab ci file --- .gitlab-ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 00000000..9216700e --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,6 @@ +before_script: + - apt-get update -qq && apt-get install -y -qq tor + - pip install -r requirements.txt +test_onionr: + script: + - make test \ No newline at end of file From a2567eacc2ae75153717d8bcd0c0603ed078e5c2 Mon Sep 17 00:00:00 2001 From: Kevin Date: Mon, 2 Jul 2018 20:28:36 +0000 Subject: [PATCH 2/3] updated ci test yml --- .gitlab-ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9216700e..f902429d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,6 +1,6 @@ -before_script: - - apt-get update -qq && apt-get install -y -qq tor - - pip install -r requirements.txt -test_onionr: - script: - - make test \ No newline at end of file +test: + script: + - apt-get update -qy + - apt-get install -y python-dev python-pip tor + - pip install -r requirements.txt + - make test \ No newline at end of file From 027c224084fae91283686d70e50ffe258361b1dd Mon Sep 17 00:00:00 2001 From: Kevin Date: Mon, 2 Jul 2018 20:34:39 +0000 Subject: [PATCH 3/3] use python3 in tests --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f902429d..292dfb14 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,6 +1,6 @@ test: script: - apt-get update -qy - - apt-get install -y python-dev python-pip tor - - pip install -r requirements.txt + - apt-get install -y python3-dev python3-pip tor + - pip3 install -r requirements.txt - make test \ No newline at end of file