summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Show local vars in pytest's reportSviatoslav Sydorenko2019-07-061-1/+1
| | |
| * | Improve pytest.ini styleSviatoslav Sydorenko2019-07-061-3/+5
| | |
| * | 🐛✅ Fix pattern matching in test_invalid_statusSviatoslav Sydorenko2019-07-061-5/+8
| | |
| * | Fix test_invalid_status to work with pytest 5Sviatoslav Sydorenko2019-07-061-3/+1
| | | | | | | | | Ref: https://github.com/cherrypy/cherrypy/pull/1791#issuecomment-508026879
* | | Ignore pending imp deprecation warning under py3.5Sviatoslav Sydorenko2019-09-041-0/+1
| | |
* | | Upgrade setuptools in tox envsSviatoslav Sydorenko2019-09-041-0/+2
| | |
* | | Ignore imp deprecation warning coming from pywin32Sviatoslav Sydorenko2019-09-041-0/+2
| | | | | | | | | | | | | | | Ref: https://github.com/mhammond/pywin32/issues/1256#issuecomment-527972824
* | | Rely on token instead of passwordJason R. Coombs2019-09-031-2/+2
| | |
* | | Merge pull request #1787 from suheb/bugfix/1779v18.2.0Jason R. Coombs2019-09-033-7/+7
|\ \ \ | | | | | | | | Do not remove session lock files
| * \ \ Merge branch 'master' into bugfix/1779Jason R. Coombs2019-09-0328-492/+667
| |\ \ \ | |/ / / |/| | |
* | | | Teach AppVeyor console understand UnicodeSviatoslav Sydorenko2019-08-261-0/+1
| | | |
* | | | Add togglable RDP support to AppVeyorSviatoslav Sydorenko2019-08-261-0/+11
| | | |
* | | | Ignore setuptools import warnings under Py 3.5Sviatoslav Sydorenko2019-08-191-0/+1
| | | |
* | | | Stop using deprecated ``assert_``Sviatoslav Sydorenko2019-08-193-3/+2
| | | |
* | | | Drop imp deprecation warning ignore from pytestSviatoslav Sydorenko2019-08-191-1/+0
| | | |
* | | | Stop using deprecated imp module in testsSviatoslav Sydorenko2019-08-191-2/+1
| | | |
* | | | Use atomic dict copy to avoid changed while iterSviatoslav Sydorenko2019-08-188-11/+8
| | | | | | | | | | | | | | | | | | | | | | | | Resolves #1805 Fixes #1803 Closes #1804
* | | | Log call duration report in junitSviatoslav Sydorenko2019-08-181-0/+1
| | | |
* | | | Enable durations output in pytestSviatoslav Sydorenko2019-08-181-1/+1
| | | |
* | | | Install toxenv deps in a separate stepSviatoslav Sydorenko2019-08-181-0/+1
| | | |
* | | | Prioritize Python 3.7 in AppVeyorSviatoslav Sydorenko2019-08-181-1/+1
| | | |
* | | | Add pytest note on CPWebCase subclassing to docsSviatoslav Sydorenko2019-08-162-0/+11
|\ \ \ \ | | | | | | | | | | PR #1800 by @stemoser
| * | | | Add pytest note on CPWebCase subclassing.Stemoser2019-08-162-0/+11
| | | | |
* | | | | Add note on testing with interactive mode to docsSviatoslav Sydorenko2019-08-161-0/+20
|\ \ \ \ \ | |/ / / / |/| | | | PR #1801 by @stemoser
| * | | | Docs: note on testing with interactive mode.Stemoser2019-08-161-0/+20
|/ / / /
* | | | Rewrite test_safe_wait_INADDR_ANY in pure pytestSviatoslav Sydorenko2019-08-141-39/+38
| | | |
* | | | Fix test_safe_wait_INADDR_ANY w/ filterwarningsSviatoslav Sydorenko2019-08-141-6/+5
| | | |
* | | | Fix RFC section ref describing HTTP404 status codeSviatoslav Sydorenko2019-08-141-1/+1
| | | |
* | | | Refactor test_logging to use pytestSviatoslav Sydorenko2019-08-111-114/+191
| | | |
* | | | Make logtest helper use pytestSviatoslav Sydorenko2019-08-111-2/+5
| | | |
* | | | Fix test_tracebacks logging testSviatoslav Sydorenko2019-08-111-2/+1
| | | |
* | | | ♲🎨 Rewrite test_bus using pytestSviatoslav Sydorenko2019-07-291-252/+277
| | | |
* | | | Add filterwarnings to pytest configSviatoslav Sydorenko2019-07-281-0/+7
| | | |
* | | | Bump rst.linker to v1.11Sviatoslav Sydorenko2019-07-281-1/+1
| | | |
* | | | Support 308 Permanent Redirect HTTP redirectSviatoslav Sydorenko2019-07-273-1/+14
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Recognize ``raise cherrypy.HTTPRedirect('/new_uri', 308)`` as a legitimate redirect. Refs: * https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/308#Status * https://tools.ietf.org/html/rfc7538#section-3 * https://airbrake.io/blog/http-errors/308-permanent-redirect * https://stackoverflow.com/a/42138726/595220 PR #1794 by @ingoogni Co-authored-by: Sviatoslav Sydorenko <wk@sydorenko.org.ua>
| * | | | Add HTTP 308 Permanent Redirect PR to changelogSviatoslav Sydorenko2019-07-271-0/+6
| | | | |
| * | | | Add a test case for HTTP 308 Permanent Redirectingoogni2019-07-271-0/+5
| | | | |
| * | | | Support 308 Permanent Redirect HTTP redirectingoogni2019-07-271-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ``raise cherrypy.HTTPRedirect('/new_uri', 308)`` is now recognized as a legitimate redirect Refs: * https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/308#Status * https://tools.ietf.org/html/rfc7538#section-3 * https://airbrake.io/blog/http-errors/308-permanent-redirect * https://stackoverflow.com/a/42138726/595220
* | | | | ♲🎨 Evolve docs building tox envSviatoslav Sydorenko2019-07-271-1/+14
| | | | |
* | | | | 📝 Add a SUPPORT file for GitHubSviatoslav Sydorenko2019-07-272-51/+52
|/ / / /
* | | | 🐛✅ Fix pattern matching in test_invalid_statusSviatoslav Sydorenko2019-07-031-5/+8
| | | |
* | | | Temporary allow nightly builds to failSviatoslav Sydorenko2019-07-031-0/+1
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | PR #1791 by @jaraco. TODO: Revert this once #1731 is fixed.
| * | | | Allow nightly builds to fail until #1731 can be fixed.Jason R. Coombs2019-07-021-0/+1
| | | | |
* | | | | Fix test_invalid_status to work with pytest 5Sviatoslav Sydorenko2019-07-031-3/+1
| | | | | | | | | | | | | | | Ref: https://github.com/cherrypy/cherrypy/pull/1791#issuecomment-508026879
* | | | | Show local vars in pytest's reportSviatoslav Sydorenko2019-07-031-1/+1
|/ / / /
* | | | Merge pull request #1789 from eamanu/patch-1Sviatoslav Sydorenko2019-06-261-1/+1
|\ \ \ \ | | | | | | | | | | Increment Copyright year
| * | | | Increment Copyright year Emmanuel Arias2019-06-261-1/+1
|/ / / / | | | | | | | | Increment the copyright year from 2018 to 2019
| * | | Update changelog. Ref #1787.Jason R. Coombs2019-09-031-0/+7
| | | |
| * | | Removing xfail from File_Concurrency testSuhaib Khan2019-07-031-1/+0
| | | | | | | | | | | | | | | | Signed-off-by: Suhaib Khan <suheb.work@gmail.com>
| * | | Remove unused importSuhaib Khan2019-07-031-1/+0
| | | | | | | | | | | | | | | | Signed-off-by: Suhaib Khan <suheb.work@gmail.com>