re-import sources as agreed with the maintainer

This commit is contained in:
Adam Samalik 2023-06-29 14:29:06 +02:00
parent 137cd353e1
commit 6121388a1f
3 changed files with 20 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,2 +1 @@
SOURCES/psutil-5.4.3.tar.gz
/psutil-5.4.3.tar.gz

8
tests/smoke/runtest.sh Executable file
View File

@ -0,0 +1,8 @@
#!/bin/bash
set -e
MODULE_PATH=`python3 -c "import psutil; print(psutil.__file__)"`
TESTDIR=`dirname $MODULE_PATH`/tests
python3 $TESTDIR/test_unicode.py

12
tests/tests.yml Normal file
View File

@ -0,0 +1,12 @@
---
- hosts: localhost
roles:
- role: standard-test-basic
tags:
- atomic
- classic
required_packages:
- python3-mock
- python3-psutil
tests:
- smoke