Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test_sdists.sh « scripts « letstest « tests - github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 204f55d5502e4dbf939c9896174c96f7818ad934 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/bin/sh -xe

cd letsencrypt

# If we're on a RHEL 6 based system, we can be confident Python is already
# installed because the package manager is written in Python.
if command -v python && [ $(python -V 2>&1 | cut -d" " -f 2 | cut -d. -f1,2 | sed 's/\.//') -eq 26 ]; then
    # RHEL/CentOS 6 will need a special treatment, so we need to detect that environment
    RUN_RHEL6_TESTS=1
fi

letsencrypt-auto-source/letsencrypt-auto --install-only -n --debug

if [ "$RUN_RHEL6_TESTS" = 1 ]; then
  # Enable the SCL Python 3.6 installed by letsencrypt-auto bootstrap
  PATH="/opt/rh/rh-python36/root/usr/bin:$PATH"
fi

PLUGINS="certbot-apache certbot-nginx"
PYTHON_MAJOR_VERSION=$(/opt/eff.org/certbot/venv/bin/python --version 2>&1 | cut -d" " -f 2 | cut -d. -f1)
TEMP_DIR=$(mktemp -d)

if [ "$PYTHON_MAJOR_VERSION" = "3" ]; then
    # Some distros like Fedora may only have an executable named python3 installed.
    PYTHON_NAME="python3"
    VENV_PATH="venv3"
    VENV_SCRIPT="tools/venv3.py"
else
    PYTHON_NAME="python"
    VENV_SCRIPT="tools/venv.py"
    VENV_PATH="venv"
fi

VERSION=$("$PYTHON_NAME" letsencrypt-auto-source/version.py)

# setup venv
"$VENV_SCRIPT" --requirement letsencrypt-auto-source/pieces/dependency-requirements.txt
. "$VENV_PATH/bin/activate"
# pytest is needed to run tests on some of our packages so we install a pinned version here.
tools/pip_install.py pytest

# build sdists
for pkg_dir in acme certbot $PLUGINS; do
    cd $pkg_dir
    python setup.py clean
    rm -rf build dist
    python setup.py sdist
    mv dist/* $TEMP_DIR
    cd -
done

# test sdists
cd $TEMP_DIR
for pkg in acme certbot $PLUGINS; do
    tar -xvf "$pkg-$VERSION.tar.gz"
    cd "$pkg-$VERSION"
    python setup.py build
    python setup.py test
    python setup.py install
    cd -
done