We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1d2c8ab + 24834eb commit 3bae489Copy full SHA for 3bae489
.github/workflows/pytest.yml
@@ -4,7 +4,7 @@ on:
4
pull_request:
5
workflow_dispatch:
6
env:
7
- PYTEST_SKIP_OPTION: "not test_no_trailing_rotate_event and not test_end_log_pos and not test_query_event_latin1"
+ PYTEST_SKIP_OPTION: "not test_no_trailing_rotate_event and not test_end_log_pos"
8
jobs:
9
test:
10
strategy:
pymysqlreplication/tests/base.py
@@ -51,6 +51,7 @@ def setUp(self, charset="utf8"):
51
self.execute("DROP DATABASE IF EXISTS pymysqlreplication_test")
52
self.execute("CREATE DATABASE pymysqlreplication_test")
53
db = copy.copy(self.database)
54
+ db["charset"] = charset
55
self.connect_conn_control(db)
56
self.stream = None
57
self.resetBinLog()
0 commit comments