Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:

- name: Install dependency
run: |
pip install -U cryptography PyNaCl pytest pytest-cov mock coveralls
pip install -U cryptography PyNaCl pytest pytest-cov coveralls

- name: Set up MySQL
run: |
Expand Down
5 changes: 3 additions & 2 deletions pymysql/tests/test_connection.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import datetime
import ssl
import sys
import time
import mock
import pytest
import time
from unittest import mock

import pymysql
from pymysql.tests import base
from pymysql.constants import CLIENT
Expand Down
1 change: 0 additions & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
cryptography
PyNaCl>=1.4.0
pytest
mock