Replace whole repo with latest content from branch rhel-8.8.0

Content corresponds with RHEL dist-git commit 38d89b1
This commit is contained in:
Honza Horak 2023-05-15 16:41:36 +02:00
parent a7b754990e
commit fa1614bd41
4 changed files with 29 additions and 0 deletions

1
.fmf/version Normal file
View File

@ -0,0 +1 @@
1

8
plan.fmf Normal file
View File

@ -0,0 +1,8 @@
execute:
how: tmt
discover:
- how: shell
tests:
- name: simple import
test: python3.11 -c 'import pymysql'
- how: fmf

8
tests/smoke_test.fmf Normal file
View File

@ -0,0 +1,8 @@
require:
- mariadb-server
- python3.11-PyMySQL
test: |
systemctl start mariadb &&
python3.11 smoke_test.py &&
systemctl stop mariadb

12
tests/smoke_test.py Normal file
View File

@ -0,0 +1,12 @@
#!/usr/bin/python3
# Modified from
# https://github.com/PyMySQL/PyMySQL/blob/v1.0.2/example.py
import pymysql
connection = pymysql.connect(unix_socket="/var/lib/mysql/mysql.sock", db="mysql")
cursor = connection.cursor()
cursor.execute("SELECT Host,User FROM user")
print(cursor.description)
cursor.close()
connection.close()