Skip to content
Open
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
6 changes: 3 additions & 3 deletions p/psutil/build_info.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"maintainer": "LenzieCamiloIBM",
"maintainer": "shivansh-ibm",
"package_name": "psutil",
"github_url": "https://github.com/giampaolo/psutil.git",
"version": "release-7.1.3",
"version": "release-7.2.1",
"wheel_build" : true,
"package_dir": "p/psutil",
"default_branch": "master",
"build_script": "psutil_7.0.0_ubi_9.3.sh",
"build_script": "psutil_7.2.1_ubi_9.3.sh",
"docker_build": false,
"validate_build_script": true,
"use_non_root_user": "false",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

# Variables
PACKAGE_NAME=psutil
PACKAGE_VERSION=${1:-release-7.1.3}
PACKAGE_VERSION=${1:-release-7.2.1}
PACKAGE_URL=https://github.com/giampaolo/psutil.git

# Install necessary system dependencies
Expand All @@ -32,7 +32,7 @@ cd $PACKAGE_NAME
git checkout $PACKAGE_VERSION

# Install additional dependencies
python3.12 -m pip install setuptools wheel pytest overlay pytest-instafail pytest-xdist
python3.12 -m pip install setuptools wheel pytest overlay pytest-instafail pytest-xdist psleak

#install
if ! python3.12 -m pip install -e . ; then
Expand All @@ -51,7 +51,7 @@ export PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
export PYTHONPATH=$(pwd):$PYTHONPATH

#run tests skipping and deselecting few tests failing on ppc64le and x86
if ! pytest -v --deselect=psutil/tests/test_linux.py --deselect=psutil/tests/test_system.py -k "not test_disk_partitions and not test_debug and not test_who and not test_terminal and not test_users and not test_cpu_freq and not test_leak_mem and not test_cpu_affinity and not test_cpu_times and not test_per_cpu_times and not test_import_all" --disable-warnings ; then
if ! pytest -v --deselect=tests/test_linux.py --deselect=tests/test_system.py -k "not test_disk_partitions and not test_debug and not test_who and not test_terminal and not test_users and not test_cpu_freq and not test_leak_mem and not test_cpu_affinity and not test_cpu_times and not test_per_cpu_times and not test_import_all" --disable-warnings ; then
echo "------------------$PACKAGE_NAME:Install_success_but_test_fails---------------------"
echo "$PACKAGE_URL $PACKAGE_NAME"
echo "$PACKAGE_NAME | $PACKAGE_URL | $PACKAGE_VERSION | GitHub | Fail | Install_success_but_test_Fails"
Expand Down