diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2017-10-25 11:42:19 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2018-09-17 14:50:02 -0700 |
commit | 1fa48b482c2db097da2b69dcaa79b3f7db98f1f0 (patch) | |
tree | b0fa3635fbf146013f293ba95fa86597b89de4d4 /tests/test_sftp.py | |
parent | 6b377c0e33c5d3443883de770a03cdb53140d07c (diff) |
Mark known slow tests as 'slow' pytest marker, and skip them by default
Diffstat (limited to 'tests/test_sftp.py')
-rw-r--r-- | tests/test_sftp.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_sftp.py b/tests/test_sftp.py index ac0d17fb..dac54a9b 100644 --- a/tests/test_sftp.py +++ b/tests/test_sftp.py @@ -42,7 +42,7 @@ from paramiko.sftp_attr import SFTPAttributes from .util import needs_builtin from .stub_sftp import StubServer, StubSFTPServer -from .util import _support +from .util import _support, slow ARTICLE = ''' @@ -88,6 +88,7 @@ unicode_folder = u'\u00fcnic\u00f8de' if PY2 else '\u00fcnic\u00f8de' utf8_folder = b'/\xc3\xbcnic\xc3\xb8\x64\x65' +@slow class TestSFTP(object): def test_1_file(self, sftp): """ |