|
@@ -8,9 +8,11 @@ addons:
|
8
|
8
|
postgresql: "9.3"
|
9
|
9
|
|
10
|
10
|
# command to install dependencies
|
|
11
|
+# Note: there's an echo at the end of pip install. It allows to override the default return code which is not 0
|
|
12
|
+# because some packages need to be ugraded to python3 (invalid python syntax because of python2 source code)
|
11
|
13
|
install:
|
12
|
|
- - "cd tracim && python setup.py develop && cd -"
|
13
|
|
- - "pip install -r install/requirements.txt"
|
|
14
|
+ - "cd tracim && python setup.py develop; cd -"
|
|
15
|
+ - "pip install -r install/requirements.txt; echo"
|
14
|
16
|
- "./bin/tg2env-patch tg2env/"
|
15
|
17
|
|
16
|
18
|
before_script:
|