summaryrefslogtreecommitdiff
path: root/cherrypy/test/modwsgi.py
Commit message (Collapse)AuthorAgeFilesLines
* Use cheroot 5.9 for webtest module.Jason R. Coombs2017-11-161-1/+3
|
* Only disable QA for E501Jason R. Coombs2017-10-281-1/+1
|
* Remove exemption for extra long lines. Updated code to conform with standard ↵Jason R. Coombs2017-10-281-1/+1
| | | | 79 character limitation. Fixes #1652.
* Move imports to the headerJason R. Coombs2017-10-061-1/+1
|
* Rely on portend for port checks. Fixes #1332.Jason R. Coombs2017-01-191-2/+3
|
* Convert all strings to conform single-quoted styleSviatoslav Sydorenko2016-09-081-16/+16
| | | | pre-commit run double-quote-string-fixer --all-files
* Fix E402 in test/modwsgiSviatoslav Sydorenko2016-09-081-1/+2
|
* Running: autopep8 -vvvvv -i `find . -name '*.py'`Gustavo Picon2014-01-121-3/+5
| | | | | --HG-- branch : autopep8
* Removed trailing whitespace from the codebase.Gustavo Picon2012-04-031-8/+8
| | | | sed -i '' -e 's/ *$//' `find cherrypy -name '*.py'`
* Bye bye, py2/3.Robert Brewer2011-07-021-0/+148
|
* Bringing python3 back into trunk with its own py3 folder; what was in trunk ↵trunkRobert Brewer2011-02-251-148/+0
| | | | goes in the py2 folder, and we can use a single setup.py to install either, depending on the version of Python that runs setup.py install.
* Removed test.py etc.Robert Brewer2010-04-271-2/+2
|
* Merged the 'gateways' branch into trunk.Robert Brewer2009-10-031-5/+4
|
* Removed py3print.Robert Brewer2009-06-141-1/+1
|
* trunk - adding a py3util module that will normalize as many differences ↵Lakin Wecker2009-06-011-1/+1
| | | | between this branch and the python3 branch as it can. First it includes a py3print call who's signature matches that of print in python3. Also removed a few byte strings of the form b''
* New CRLF test, plus some test suite fixes.Robert Brewer2009-02-051-0/+3
|
* Rework of test suite to start the engine once per module, and only for ↵Robert Brewer2009-01-291-58/+30
| | | | modules that have a 'setup_server' function. This allows us to include modules which do not need to start a server in the normal test.py testList and exercise them at every full run. See, for example, that test_bus and test_states are now included.
* Silenced some cpmodpy errors due to not using WSGI.Robert Brewer2008-11-081-0/+1
|
* Silenced some long-known test disparities when using Apache as the server in ↵Robert Brewer2008-11-081-0/+2
| | | | a separate process.
* More updates to mod_wsgi test harness.Robert Brewer2008-07-091-9/+30
|
* Updates to modwsgi test harness.Robert Brewer2008-07-051-3/+7
|
* Trunk fix for #752 (Return cherrypy.server to a single-server model):Robert Brewer2007-11-111-0/+1
| | | | | | | | | 1. Change restsrv.servers.ServerManager (multiple httpservers) to ServerAdapter (one httpserver). 2. cherrypy.server is now a subclass of ServerAdapter, and is subscribed by default. 3. Made several plugin methods idempotent that weren't before. 4. Added names to win32 bus state events. Also fixed a buglet in win32 block(). 5. Added repr to wspbus.states.State objects. 6. Did ''not'' change any callers of cherrypy.server other than what was necessary, to help prove the fixes work without breaking compatibility. Future changesets will be used to modify docs and tutorials n such.
* Forward port to trunk of 3.0.x [1716]. New support for mod_wsgi in the test ↵Robert Brewer2007-10-281-0/+145
suite. Use test.py --server=modwsgi.