Compare commits

...

No commits in common. "db207444c9844fcb22b827c887faee56fcb01bc7" and "c8-beta" have entirely different histories.

9 changed files with 2 additions and 38 deletions

View File

@ -1 +0,0 @@
1

2
.gitignore vendored
View File

@ -1 +1 @@
/PyMySQL-1.0.2.tar.gz
SOURCES/PyMySQL-1.0.2.tar.gz

View File

@ -0,0 +1 @@
d58a2901d390e651df3e17f1225c33b868f75650 SOURCES/PyMySQL-1.0.2.tar.gz

View File

@ -1,7 +0,0 @@
--- !Policy
product_versions:
- rhel-9
decision_context: osci_compose_gate
rules:
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}

View File

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

View File

@ -1 +0,0 @@
SHA512 (PyMySQL-1.0.2.tar.gz) = c831505dafe6aebf039129ec4b09ef6dcafd490bcee2b515f42c0d0412fe9c379ba28650fb329d21f1da7e9fcae64968e1bc6065a04a08e00497a24967e27146

View File

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

View File

@ -1,12 +0,0 @@
#!/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()