chiark / gitweb /
update outdated pylint setup
[fdroidserver.git] / tests / complete-ci-tests
1 #!/bin/bash
2 #
3 # this is the script run by the Jenkins and gitlab-ci continuous integration
4 # build services.  It is a thorough set of tests that runs all the tests using
5 # the various methods of installing/running fdroidserver.  It is separate from
6 # ./tests/run-tests because its too heavy for manual use.
7
8 if [ `dirname $0` != "." ]; then
9     echo "only run this script like ./`basename $0`"
10     exit 1
11 fi
12
13 set -e
14 set -x
15
16 if [ -z $WORKSPACE ]; then
17     export WORKSPACE=`pwd`/..
18 fi
19
20 if [ -z $ANDROID_HOME ]; then
21     if [ -e ~/.android/bashrc ]; then
22         . ~/.android/bashrc
23     else
24         echo "ANDROID_HOME must be set!"
25         exit 1
26     fi
27 fi
28
29 apksource=$1
30
31 #------------------------------------------------------------------------------#
32 # cache pypi downloads
33 if [ -z $PIP_DOWNLOAD_CACHE ]; then
34     export PIP_DOWNLOAD_CACHE=$HOME/.pip_download_cache
35 fi
36
37
38 #------------------------------------------------------------------------------#
39 # required Java 7 or later keytool/jarsigner for :file support
40
41 export PATH=/usr/lib/jvm/java-8-openjdk-amd64/bin:$PATH
42
43
44 #------------------------------------------------------------------------------#
45 # run local tests, don't scan fdroidserver/ project for APKs
46
47 cd $WORKSPACE/tests
48 ./run-tests $apksource
49
50
51 #------------------------------------------------------------------------------#
52 # test building the source tarball, then installing it
53 cd $WORKSPACE
54 python3 setup.py sdist
55
56 rm -rf $WORKSPACE/env
57 pyvenv $WORKSPACE/env
58 . $WORKSPACE/env/bin/activate
59 # workaround https://github.com/pypa/setuptools/issues/937
60 pip3 install setuptools==33.1.1
61 pip3 install dist/fdroidserver-*.tar.gz
62
63 # run tests in new pip+pyvenv install
64 fdroid=$WORKSPACE/env/bin/fdroid $WORKSPACE/tests/run-tests $apksource
65
66
67 #------------------------------------------------------------------------------#
68 # test install using install direct from git repo
69 cd $WORKSPACE
70 rm -rf $WORKSPACE/env
71 pyvenv $WORKSPACE/env
72 . $WORKSPACE/env/bin/activate
73 # workaround https://github.com/pypa/setuptools/issues/937
74 pip3 install setuptools==33.1.1
75 pip3 install -e $WORKSPACE
76 python3 setup.py install
77
78 # run tests in new pip+pyvenv install
79 fdroid=$WORKSPACE/env/bin/fdroid $WORKSPACE/tests/run-tests $apksource
80
81
82 #------------------------------------------------------------------------------#
83 # run git pre-commit hook for pep8, pyflakes, etc
84 sh hooks/pre-commit
85
86
87 #------------------------------------------------------------------------------#
88 # run pylint
89
90 # only run it where it will work, for example, the pyvenvs above don't have pylint
91 if which pylint3 && python3 -c "import pylint" 2> /dev/null; then
92     cd $WORKSPACE
93     pylint3 --rcfile=.pylint-rcfile --output-format=colorized --reports=n \
94             fdroid \
95             makebuildserver \
96             setup.py \
97             fdroidserver/*.py \
98             tests/*.py \
99             tests/*.TestCase
100 fi