aboutsummaryrefslogtreecommitdiffstats
path: root/check_requirements.sh
blob: 8d8e6f52c40629c863dd8c5f77b6e27b78fb0c10 (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
62
63
#!/bin/sh

# Script to be used on a regular basis to prevent requirements.txt
# from going stale
#
# Copyright (C) 2018 Intel Corporation
#
# Licensed under the MIT license, see COPYING.MIT for details

if [ ! -f requirements.txt ] ; then
    echo "No requirements.txt file, please run this in the right directory"
    exit 1
fi

set -e

if [ "$1" = "-q" ] ; then
    quiet="1"
elif [ "$1" = "" ] ; then
    quiet="0"
else
    echo "Invalid option: $1"
    exit 1
fi

vecho()
{
    if [ "$quiet" = "0" ] ; then
        echo "$@"
    fi
}


tmpdir=`mktemp -d`
vecho "Setting up virtual environment"
python3 -m venv $tmpdir
. $tmpdir/bin/activate
pip install -q --upgrade pip
pip install -q -r requirements.txt
newreqs="requirements.txt.updated"
vecho "Creating $newreqs"
pip freeze > $newreqs
newreqsdiff="requirements.txt.diff"
vecho "Creating $newreqsdiff"
diff -udN requirements.txt $newreqs > $newreqsdiff || true
outdated="requirements_outdated.txt"
vecho "Creating $outdated"
pip list --outdated > $outdated
pip install -q pipdeptree
deptree="requirements_deptree.txt"
vecho "Creating $deptree"
pipdeptree > $deptree
pip install -q safety
safety="requirements_safety_check.txt"
vecho "Running safety check (output also to $safety)"
safety check | tee $safety
echo
echo "Outdated components:"
echo
cat $outdated
deactivate
rm -rf $tmpdir