Skip to content

Commit cdb94b2

Browse files
committed
testing code coverage failure
1 parent cc3940c commit cdb94b2

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

main.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44

55
# Clean one-liner: set level and output mode together
66
setup_logging(output="both")
7-
7+
print("Logging is set up.")
8+
print("This is a test PR for mssql-python.")
89
conn_str = os.getenv("DB_CONNECTION_STRING")
910
conn = connect(conn_str)
1011
cursor = conn.cursor()
@@ -15,4 +16,4 @@
1516
print(f"Database ID: {row[0]}, Name: {row[1]}")
1617

1718
cursor.close()
18-
conn.close()
19+
conn.close()

0 commit comments

Comments
 (0)