re-import sources as agreed with the maintainer
This commit is contained in:
parent
6104c89208
commit
8d48699ba4
5
.gitignore
vendored
5
.gitignore
vendored
@ -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
|
/python-schedutils-0.6.tar.xz
|
||||||
|
14
tests/scripts/run_tests.sh
Normal file
14
tests/scripts/run_tests.sh
Normal 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
14
tests/tests.yml
Normal 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
|
Loading…
Reference in New Issue
Block a user