Skip to content

Commit

Permalink
tests: install psql command
Browse files Browse the repository at this point in the history
required by tests
maybe it was already installed on github actions by default? we can't
rely on it, better do it explicitly
then it also works on other plattforms, such as act
  • Loading branch information
sebix committed Dec 1, 2024
1 parent 9e6e722 commit 23e5d1c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/scripts/setup-full.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ if [ $python_version == '3.8' ]; then
# for pymssql there are no wheels for 3.8 https://github.com/certtools/intelmq/issues/2539
DEBIAN_FRONTEND="noninteractive" sudo -E apt install -y build-essential freetds-dev libssl-dev libkrb5-dev
fi
# for psql (used below)
DEBIAN_FRONTEND="noninteractive" sudo -E apt install -y postgresql-client-14

# Install the dependencies of all the bots
pip install wheel
Expand Down

0 comments on commit 23e5d1c

Please sign in to comment.