re-import sources as agreed with the maintainer

This commit is contained in:
Adam Samalik 2023-07-10 13:13:49 +02:00
parent 6104c89208
commit 8d48699ba4
3 changed files with 32 additions and 1 deletions

5
.gitignore vendored
View File

@ -1,2 +1,5 @@
SOURCES/python-schedutils-0.6.tar.xz
python-schedutils-0.2.tar.bz2
/python-schedutils-0.4.tar.bz2
/python-schedutils-0.4.tar.xz
/python-schedutils-0.5.tar.xz
/python-schedutils-0.6.tar.xz

View File

@ -0,0 +1,14 @@
#!/usr/bin/bash
# make sure we have rteval installed
if rpm -q --quiet python3-schedutils; then
:
else
sudo dnf install -y python3-schedutils
if [[ $? != 0 ]]; then
echo "install of python3-schedutils failed!"
exit 1
fi
fi
exit 0

14
tests/tests.yml Normal file
View File

@ -0,0 +1,14 @@
- hosts: localhost
roles:
- role: standard-test-basic
tags:
- classic
tests:
- pchrt:
dir: .
run: pchrt --help
- ptaskset:
dir: .
run: ptaskset --help
required_packages:
- python3-schedutils