This website requires JavaScript.
Explore
Get Started
openstack
/
deb-python-eventlet
Code
Issues
Proposed changes
Files
c993edff74b1336e170c510adf17030bc8129527
deb-python-eventlet
/
tests
History
Ryan Williams
c993edff74
Migrated test_threading_local to be a patching test. Discovered that it's actually failing, but the way it was previously written the failures were masked.
2009-09-02 10:47:08 -07:00
..
stdlib
Migrated test_threading_local to be a patching test. Discovered that it's actually failing, but the way it was previously written the failures were masked.
2009-09-02 10:47:08 -07:00
__init__.py
It turns out that if my --eventlet-hub=foo command fails to import foo, I don't really want it to just write a warning, I want it to crash hard. Skipped the threading-related tests when using the libevent hub, as well as the multiple readers test, because it fails all of them.
2009-08-31 20:29:11 -07:00
api_test.py
Added cool little debug mode to Hub which makes it easier to see why a particular fileno is in the hub by recording the traceback of when the fileno was added. Enable this mode by doing api.get_hub().debug = True. Tweaked tpool so that it only starts up its thread pool when you actually call execute(). I think this is not a performance hit and it will make it somewhat nicer to use. Some other randomc changes like more explicit package name in test_named so it passes when called from within nose.
2009-08-24 22:35:25 -07:00
coros_test.py
Renamed greentest to tests to be more standard.
2009-07-24 13:51:02 -07:00
db_pool_test.py
Added cool little debug mode to Hub which makes it easier to see why a particular fileno is in the hub by recording the traceback of when the fileno was added. Enable this mode by doing api.get_hub().debug = True. Tweaked tpool so that it only starts up its thread pool when you actually call execute(). I think this is not a performance hit and it will make it somewhat nicer to use. Some other randomc changes like more explicit package name in test_named so it passes when called from within nose.
2009-08-24 22:35:25 -07:00
eventlet_hub.py
Twisted support in eventlet_hub.py, fixed minor discovered twistedr bug.
2009-09-01 18:29:35 -07:00
generate_report.py
Fixed broken saranwrap test by exposing the importerror to the parent process; a better overall design. Fixed some mistakes in the poll module. Slightly loosened sqlite3 dependency so pysqlite2 is a substitute.
2009-08-07 00:18:16 -07:00
greenio_test.py
It turns out that if my --eventlet-hub=foo command fails to import foo, I don't really want it to just write a warning, I want it to crash hard. Skipped the threading-related tests when using the libevent hub, as well as the multiple readers test, because it fails all of them.
2009-08-31 20:29:11 -07:00
parse_results.py
Fixed broken saranwrap test by exposing the importerror to the parent process; a better overall design. Fixed some mistakes in the poll module. Slightly loosened sqlite3 dependency so pysqlite2 is a substitute.
2009-08-07 00:18:16 -07:00
pools_test.py
Eliminate references to 'greentest'
2009-07-27 15:40:30 -07:00
processes_test.py
Added @skipped decorator in tests, hopefully we don't use it too much. Replaced a bunch of skipped-by-renaming tests with @skipped decorator. Removed the silly timing-sensitive test in processes_test.py.
2009-08-15 10:56:21 -07:00
README
Renamed greentest to tests to be more standard.
2009-07-24 13:51:02 -07:00
record_results.py
Removed exit_unless_* methods, fixed the stuff that depended on them.
2009-08-14 18:54:40 -07:00
runall.py
Renamed greentest to tests to be more standard.
2009-07-24 13:51:02 -07:00
saranwrap_test.py
Unskipped unbroken test. :-)
2009-08-23 21:04:27 -07:00
test__api_timeout.py
Renamed greentest to tests to be more standard.
2009-07-24 13:51:02 -07:00
test__coros_queue.py
Eliminate references to 'greentest'
2009-07-27 15:40:30 -07:00
test__coros_semaphore.py
Eliminate references to 'greentest'
2009-07-27 15:40:30 -07:00
test__doctests.py
Renamed greentest to tests to be more standard.
2009-07-24 13:51:02 -07:00
test__event.py
Eliminate references to 'greentest'
2009-07-27 15:40:30 -07:00
test__greenness.py
Eliminate references to 'greentest'
2009-07-27 15:40:30 -07:00
test__hub.py
Added cool little debug mode to Hub which makes it easier to see why a particular fileno is in the hub by recording the traceback of when the fileno was added. Enable this mode by doing api.get_hub().debug = True. Tweaked tpool so that it only starts up its thread pool when you actually call execute(). I think this is not a performance hit and it will make it somewhat nicer to use. Some other randomc changes like more explicit package name in test_named so it passes when called from within nose.
2009-08-24 22:35:25 -07:00
test__pool.py
Added waiting method back to pool.Pool that was lost, plus a unit test so it doesn't get lost again.
2009-08-14 17:18:56 -07:00
test__proc.py
Eliminate references to 'greentest'
2009-07-27 15:40:30 -07:00
test__refcount.py
Renamed greentest to tests to be more standard.
2009-07-24 13:51:02 -07:00
test__socket_errors.py
Renamed greentest to tests to be more standard.
2009-07-24 13:51:02 -07:00
test__timers.py
Renamed greentest to tests to be more standard.
2009-07-24 13:51:02 -07:00
test__twistedutil_protocol.py
Slight improvement to hide twisted tests from people who don't have it.
2009-08-24 12:19:43 -07:00
test__twistedutil.py
Removed exit_unless_* methods, fixed the stuff that depended on them.
2009-08-14 18:54:40 -07:00
test_server.crt
Renamed greentest to tests to be more standard.
2009-07-24 13:51:02 -07:00
test_server.key
Renamed greentest to tests to be more standard.
2009-07-24 13:51:02 -07:00
test_support.py
Eliminate references to 'greentest'
2009-07-27 15:40:30 -07:00
test_thread__boundedsem.py
Renamed greentest to tests to be more standard.
2009-07-24 13:51:02 -07:00
test_timeout.py
Eliminate references to 'greentest'
2009-07-27 15:40:30 -07:00
timer_test.py
Renamed greentest to tests to be more standard.
2009-07-24 13:51:02 -07:00
tpool_test.py
It turns out that if my --eventlet-hub=foo command fails to import foo, I don't really want it to just write a warning, I want it to crash hard. Skipped the threading-related tests when using the libevent hub, as well as the multiple readers test, because it fails all of them.
2009-08-31 20:29:11 -07:00
with_eventlet.py
Full duplex for select hub. tcp_server has to be changed because we no longer raise EPIPE into waiting coroutines when closing a socket. api_test was correspondingly changed so it still worked. TestCloseSocketWhilePolling was removed because it was testing no-longer-existing behavior. add_descriptor is gone, replaced by add_reader and add_writer.
2009-08-02 23:01:34 -07:00
with_timeout.py
Eliminate references to 'greentest'
2009-07-27 15:40:30 -07:00
wsgi_test.py
Added cool little debug mode to Hub which makes it easier to see why a particular fileno is in the hub by recording the traceback of when the fileno was added. Enable this mode by doing api.get_hub().debug = True. Tweaked tpool so that it only starts up its thread pool when you actually call execute(). I think this is not a performance hit and it will make it somewhat nicer to use. Some other randomc changes like more explicit package name in test_named so it passes when called from within nose.
2009-08-24 22:35:25 -07:00
README
use 'kdiff3 python2.5/Lib/test .' to see all the differences