8000 Add constants and tests related to query timeouts by Nothing4You · Pull Request #1033 · PyMySQL/PyMySQL · GitHub
[go: up one dir, main page]

Skip to content

Add constants and tests related to query timeouts #1033

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
May 23, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
cleanup
  • Loading branch information
methane committed May 23, 2023
commit 2c5bab6302f4be491c71716c1ce8ff588c783311
15 changes: 3 additions & 12 deletions pymysql/tests/test_SSCursor.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,8 @@
import sys

import pytest

try:
from pymysql.tests import base
import pymysql.cursors
from pymysql.constants import CLIENT, ER
except Exception:
# For local testing from top-level directory, without installing
sys.path.append("../pymysql")
from pymysql.tests import base
import pymysql.cursors
from pymysql.constants import CLIENT, ER
from pymysql.tests import base
import pymysql.cursors
from pymysql.constants import CLIENT, ER


class TestSSCursor(base.PyMySQLTestCase):
Expand Down
0