Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-05-05 | Migrate rest of main keys and update suite to be more pytest-relaxed compat | Jeff Forcier | |
Main branch as of today: 350 passed, 21 skipped, 52 deselected, 3 warnings in 11.10s This branch as of this commit: 361 passed, 21 skipped, 52 deselected, 3 warnings in 10.51s Of those 11 "new" tests, 8 are ones I wrote (tests/pkey.py). Hard to figure out what the other 3 are given pytest-relaxed's output is very different from regular verbose pytest. oops. | |||
2023-01-27 | Just change a faux-misspelt surname in an example text snippet | Jeff Forcier | |
2023-01-24 | [DATALAD RUNCMD] Run codespell -w | Yaroslav Halchenko | |
=== Do not change lines below === { "chain": [], "cmd": "codespell -w", "exit": 0, "extra_inputs": [], "inputs": [], "outputs": [], "pwd": "." } ^^^ Do not change lines above ^^^ | |||
2023-01-16 | No more (object)ions | Jeff Forcier | |
2023-01-16 | s/%/fstrings/g | Jeff Forcier | |
Except in one spot where it was too complicated to bother for now XD | |||
2023-01-11 | Missed a spot re: b,u helpers now in util | Jeff Forcier | |
2023-01-11 | No idea when self.fail worked or didn't. old code is old? | Jeff Forcier | |
2023-01-11 | Import shuffle | Jeff Forcier | |
2023-01-09 | Remove py3compat.PY2, including related streamlining | Jeff Forcier | |
2023-01-09 | Update StringIO | Jeff Forcier | |
2022-06-03 | Merge branch '2.10' into 2.11 | Jeff Forcier | |
2022-06-03 | sftp tests: Replace unittest parts | Stanislav Levin | |
The original PR https://github.com/paramiko/paramiko/pull/992 introduced several tests for sftp functionality. These tests made use of unittest's stuff like `assertTrue` and `assertEqual` because at that moment the tests were grouped under the `unittest.TestCase`-based class (`SFTPTest`). Before PR merge `unittest.TestCase` was refactored out from sftp tests (667bd74b139ed86f9b261d3abf5b6042ba80920b) but PR was not updated. The sftp tests are marked with `slow` and that's why they are not failed in CI (slow tests are excluded by default). Fixes: https://github.com/paramiko/paramiko/issues/1941 Signed-off-by: Stanislav Levin <slev@altlinux.org> | |||
2022-03-15 | Fix Free Software Foundation address | Paul Howarth | |
They moved from Temple Place to Franklin Street in 2005. | |||
2021-11-28 | Blacken code for #992 | Jeff Forcier | |
2021-11-28 | Cleanup re #992 | Jeff Forcier | |
- remove apparently vestigial bits - remove Python 2.6 related bits - use pytest.skip instead of custom skip | |||
2021-11-28 | Fix failure in listdir when server uses a locale | Martin Packman | |
Fixes #985 SFTPAttributes uses the locale-aware %b directive for the abbreviated month name with time.strftime, but was not decoding the result on Python 2.7. Add a strftime alias in py3compat that will always return unicode, and resolve the mixing of bytes and text in SFTPAttributes methods. Add a test at the listdir level, and a more specific test for the SFTPAttributes asbytes method. | |||
2021-06-06 | Blacken | Jeff Forcier | |
2021-04-30 | Fixup readability: Add Test for get() without using prefetch | Tim Stolarski | |
2021-04-28 | Add Test fpr get() without using prefetch | Tim Stolarski | |
2019-06-08 | Some additional badly named tests that I guess weren't in master? | Jeff Forcier | |
2019-06-08 | flake8 now applied to tests, huzzah | Jeff Forcier | |
2019-06-08 | Clean up shitty old test names of form test_[9-0A-Z]+_.* | Jeff Forcier | |
2018-08-22 | Bump black up to 18.6b4 | Jeff Forcier | |
2018-05-29 | Blacken under black 18.5b0 | Jeff Forcier | |
2018-05-17 | Blacken Paramiko on 2.4 | Chris Rose | |
2017-10-25 | Mark known slow tests as 'slow' pytest marker, and skip them by default | Jeff Forcier | |
2017-10-23 | Why were these +x? | Jeff Forcier | |
2017-10-23 | Naturally, more tests I found that do not pass/fail correctly. Skip for now | Jeff Forcier | |
2017-10-23 | Replace rest of unittest-style self-asserts in sftp tests | Jeff Forcier | |
2017-10-23 | Start overhauling regular SFTP suite. | Jeff Forcier | |
Includes attempt to split out the longer-lived server component from the client component, in fixtures Also starts tweaking early tests so they're less bad. E.g. test_2_close had its docstring actively disagreeing with its code (which was super confusing since both were committed at the same time in 2005...) | |||
2017-10-23 | Get big sftp tests passing w/ the sftp client + folder crap being a fixture | Jeff Forcier | |
2017-10-23 | Get sftp-big tests apparently passing. | Jeff Forcier | |
Very slowly. Pretty sure we will want to retain module-level fixtures for that stuff. heh. | |||
2017-10-23 | Import cleanup, mostly focused on s/tests/./ | Jeff Forcier | |
2017-10-23 | Rename util func that trips pytest's default discovery. | Jeff Forcier | |
Wouldn't matter as much under pytest-relaxed discovery, but, eh | |||
2017-10-14 | Remove old Python 3.2 code | Hugo | |
2017-06-09 | Merge branch '2.1' | Jeff Forcier | |
2017-06-09 | Allow any buffer type to be written to SFTPFile | Martin Packman | |
Fixes #967 #968 Rollup of earlier branches proposed as #969 and #970 with additional fix inside sftp_client. Includes new tests for SFTPFile usage. Change against the 1.17 branch. | |||
2017-06-06 | Merge branch 'master' into 471-int | Jeff Forcier | |
2017-01-24 | untie agian! | james mike dupont | |
2016-04-23 | Merge branch '1.16' | Jeff Forcier | |
2016-04-23 | Merge branch '1.15' into 1.16 | Jeff Forcier | |
2016-04-23 | Update existing test to prove #632 | Jeff Forcier | |
2015-12-17 | Merge branch 'master' of github.com:paramiko/paramiko | Adam Meily | |
Conflicts: paramiko/sftp_file.py sites/www/changelog.rst | |||
2015-11-04 | Merge branch 'master' into 562-int | Jeff Forcier | |
2015-11-02 | Merge branch '1.14' into 1.15 | Jeff Forcier | |
2015-11-02 | Added test for str() of empty SFTPAttributes() | Ulrich Petri | |
2015-09-24 | add unit tests for file-like object methods and update changelog and docs | Adam Meily | |
2015-07-23 | prefetch now requires file_size to be passed in as a parameter | Torkil Gustavsen | |
Calling stat from inside the prefetch-body has led users to receive IOError: The message [<filename>] is not extractable. | |||
2015-02-01 | Add IOError in posix-rename@openssh.com test for python 2 support. | Mika Pflüger | |
2015-01-06 | Add test for posix-rename@openssh.com extension for SFTP client | Mika Pflüger | |