Skip to content

Commit

Permalink
try to solve random failure issues
Browse files Browse the repository at this point in the history
  • Loading branch information
giampaolo committed Jun 23, 2024
1 parent fe929d3 commit 423bb3e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pyftpdlib/test/test_functional.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@
from pyftpdlib.test import safe_rmpath
from pyftpdlib.test import touch

from . import MProcessTestFTPd


class TestFtpAuthentication(PyftpdlibTestCase):
"""Test: USER, PASS, REIN."""
Expand Down Expand Up @@ -1914,7 +1916,8 @@ def test_use_gmt_times(self):


class TestCallbacks(PyftpdlibTestCase):
server_class = ThreadedTestFTPd
# using m-proc server since m-thread server produces random failures
server_class = MProcessTestFTPd
client_class = ftplib.FTP

def setUp(self):
Expand Down

0 comments on commit 423bb3e

Please sign in to comment.