Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Dockerfile--alpine.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ ENTRYPOINT sh -c " \
set -eux; \
echo HELLO FROM ENTRYPOINT; \
echo HOME DIR IS [`realpath ~/`]; \
echo WORK DIR IS [$(pwd)]; \
ssh-keygen -t rsa -f ~/.ssh/id_rsa -q -N ''; \
cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys; \
chmod 600 ~/.ssh/authorized_keys; \
Expand Down
8 changes: 3 additions & 5 deletions run_tests3.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
#!/usr/bin/env bash

# Copyright (c) 2017-2025 Postgres Professional

set -eux

# prepare python environment
Expand All @@ -13,12 +11,12 @@ source "${VENV_PATH}/bin/activate"
pip install -r tests/requirements.txt

# install testgres' dependencies
export PYTHONPATH=$(pwd)
# export PYTHONPATH=$(pwd)
# $PIP install .

flake8
flake8 .

pytest -l -v -n 4
python -m pytest -l -vvv -n 4

set +eux

Empty file added tests/__init__.py
Empty file.
Empty file added tests/units/__init__.py
Empty file.
Empty file.
Empty file.