From c40fdbcb8d75bb653d863aeab87d22154a0be1f7 Mon Sep 17 00:00:00 2001 From: Dmitry Kovalenko Date: Sun, 2 Nov 2025 16:15:46 +0300 Subject: [PATCH] cleanup: CI uses "python -m pytest ..." explicitly "export PYTHONPATH=$(pwd)" is deleted. --- run_tests3.sh | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/run_tests3.sh b/run_tests3.sh index 69b4e7e..f3deb0f 100755 --- a/run_tests3.sh +++ b/run_tests3.sh @@ -12,11 +12,6 @@ export VIRTUAL_ENV_DISABLE_PROMPT=1 source "${VENV_PATH}/bin/activate" pip install pytest pytest-xdist -# install testgres' dependencies -export PYTHONPATH=$(pwd) -# $PIP install . - -pytest -l -v -n 4 +python -m pytest -l -v -n 4 set +eux -