File tree Expand file tree Collapse file tree 1 file changed +30
-4
lines changed Expand file tree Collapse file tree 1 file changed +30
-4
lines changed Original file line number Diff line number Diff line change @@ -16,12 +16,38 @@ jobs:
1616 python-version : ${{ matrix.python-version }}
1717 - name : Install dependencies
1818 run : |
19- sudo apt install python3-dev postgresql python3-pip libpq-dev gettext
20- python3 -m pip install --upgrade pip
21- pip3 install requests ujson graphviz django psycopg2 pluggy py attrs six more-itertools ply pytest atomicwrites pycparser psycopg2 sympy pytz
19+ sudo apt update && sudo apt install -y \
20+ software-properties-common \
21+ build-essential \
22+ git \
23+ python3-dev \
24+ python3-pip \
25+ python3-setuptools \
26+ python3-wheel \
27+ gettext \
28+ postgresql \
29+ libpq-dev \
30+ graphviz
31+ pip3 install --upgrade pip && pip3 install "setuptools<66.0.0"
32+ pip3 install \
33+ requests \
34+ ujson \
35+ django \
36+ pluggy \
37+ py \
38+ attrs \
39+ six \
40+ more-itertools \
41+ ply \
42+ pytest \
43+ atomicwrites \
44+ pycparser \
45+ psycopg2-binary \
46+ sympy \
47+ pytz
2248 - name : Deployment of CVV
2349 run : |
24- ./deploys/deployment.sh _test_
50+ sudo ./deploys/deployment.sh _test_
2551 ./start.sh &
2652 sleep 5
2753 ./stop.sh
You can’t perform that action at this time.
0 commit comments