We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30aeb83 commit 7b9811aCopy full SHA for 7b9811a
.github/workflows/ci.yml
@@ -99,5 +99,6 @@ jobs:
99
100
- name: Run tests with MySQL
101
if: matrix.database == 'mysql'
102
+ # 127.0.0.1 is to persuade mysqlclient to use tcp rather than the domain socket :-/
103
run: |
- uv run --all-extras --dev --with mysqlclient --resolution ${{ matrix.uv-resolution }} -m pytest --sqlalchemy-connect-url="mysql://root:mysql@localhost:3306/test_db?protocol=tcp"
104
+ uv run --all-extras --dev --with mysqlclient --resolution ${{ matrix.uv-resolution }} -m pytest --sqlalchemy-connect-url="mysql://root:mysql@127.0.0.1:3306/test_db"
0 commit comments