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

install_and_test.sh « tools - github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 819f683aaa042fd2a6eb2816a0221bea6be03b48 (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
#!/bin/sh -e
# pip installs the requested packages in editable mode and runs unit tests on
# them. Each package is installed and tested in the order they are provided
# before the script moves on to the next package. If CERTBOT_NO_PIN is set not
# set to 1, packages are installed using pinned versions of all of our
# dependencies. See pip_install.sh for more information on the versions pinned
# to.

if [ "$CERTBOT_NO_PIN" = 1 ]; then
  pip_install="pip install -q -e"
else
  pip_install="$(dirname $0)/pip_install_editable.sh"
fi

temp_cwd=$(mktemp -d)
trap "rm -rf $temp_cwd" EXIT

set -x
for requirement in "$@" ; do
  $pip_install $requirement
  pkg=$(echo $requirement | cut -f1 -d\[)  # remove any extras such as [dev]
  pkg=$(echo "$pkg" | tr - _ )  # convert package names to Python import names
  if [ $pkg = "." ]; then
    pkg="certbot"
  fi
  cd "$temp_cwd"
  pytest --numprocesses auto --quiet --pyargs $pkg
  cd -
done