summaryrefslogtreecommitdiff
path: root/tests
Commit message (Expand)AuthorAgeFilesLines
* Added unit test for scheduling bound methodsAlex Grönholm2011-05-291-0/+15
* Fixed importsAlex Grönholm2011-05-291-3/+3
* Tests don't have to be in a package; fixed test failures due to changes to ge...Alex Grönholm2011-05-294-10/+9
* Revamped get_callable_name, obj_to_ref and ref_to_obj to work with a broader ...Alex Grönholm2011-05-291-12/+19
* Fixed zero valued fields in cron trigger specificationagronholm2011-04-161-0/+5
* Fixed thread pool logic and tests; improved documentation on thread pool optionsv2.0.0rc1agronholm2011-04-162-11/+26
* Corrected documentation and logging semantics of scheduler startup and shutdo...agronholm2011-04-131-2/+2
* Raise a RuntimeError when attempting to schedule tasks in the thread pool aft...agronholm2011-04-121-1/+1
* Modified Job.add_instance to raise an exception when attempting to exceed max...agronholm2011-04-122-23/+41
* Readded Scheduler.unschedule_func(), which now raises a KeyError when no matc...agronholm2011-04-112-7/+27
* Made ShelveJobStore store the state of the job, not the actual object and pre...agronholm2011-04-102-4/+33
* Moved tests to the parent directory and made that a packageagronholm2011-04-109-5/+5
* Replaced misfire actions with the coalesce optionagronholm2011-04-104-79/+75
* Added misfire actions; Added more events; Reorganized events into their own m...agronholm2011-04-033-186/+208
* Fixed a bug where jobs would not get the scheduler's global misfire grace tim...agronholm2011-02-083-11/+20
* Increased test coverage; job store tests close and erase their job stores whe...agronholm2011-02-085-28/+82
* Ensure that errors in jobs are properly loggedagronholm2011-02-071-5/+14
* Use a database name specific for unit testing with MongoDBJobStoreagronholm2011-02-071-1/+1
* Fixed jobstore configuration from options dictagronholm2011-02-071-0/+9
* Greatly improved the speed of scheduler tests by bypassing threading entirelyagronholm2011-02-061-3/+211
* Removed __lt__ from Job -- it has no use really, and would require __gt__ to ...agronholm2011-02-061-7/+0
* Fixed the SQLAlchemy job store testagronholm2011-01-221-3/+2
* Added MongoDB job store; fixed py3k compatibility issues in testjobstores.pyagronholm2010-12-191-3/+27
* Fixed wrong expected string in test_to_unicode()agronholm2010-12-191-1/+1
* Expanded test coverageagronholm2010-12-132-0/+140
* Dropped the use of SQLAlchemy ORM to prevent instrumentation of the Job classagronholm2010-12-131-2/+2
* Harmonized the str() implementations in triggers and added missing tests for ...agronholm2010-12-131-0/+14
* Restrict the use of job store aliases to the scheduleragronholm2010-12-121-20/+55
* Added test for date trigger with date as textagronholm2010-12-121-0/+6
* Added maybe_ref() and tests for text to datetime conversionagronholm2010-12-121-16/+21
* Modified the thread pool and the scheduler to enable use of any PEP 3148 comp...agronholm2010-11-281-5/+5
* Major design shift -- dropped clustering and stateful job support in favor of...agronholm2010-10-094-76/+261
* Fixed tests (checkin_time should have been checkout_time)agronholm2010-10-081-2/+2
* Fixed thread pool implementation (changed semantics to more closely resemble ...agronholm2010-10-081-9/+3
* Thread pools now handle interpreter exits gracefully, thanks to advice from B...agronholm2010-09-161-14/+30
* Added the parse_datestring functionagronholm2010-08-101-0/+15
* Removed JobMeta level max_runs and runs, those will be handled on the trigger...agronholm2010-08-102-5/+21
* Restructured triggers to a packageagronholm2010-08-054-215/+41
* Major overhaul of job stores and scheduler operation logicagronholm2010-07-272-78/+90
* Increased test coverage, improved Jython compatibilityagronholm2010-07-261-3/+5
* Combined the two versions of test_to_unicode, added checks for existence of t...agronholm2010-07-251-15/+12
* Added test skips for environments that don't have sqlite or dbhash availableagronholm2010-07-251-5/+16
* Fixed teardown of TestShelveJobStoreagronholm2010-07-251-2/+5
* Use 'ignore' mode when decoding from asciiagronholm2010-07-241-0/+17
* The scheduler is now responsible for placing next_run_time on jobs, and jobs ...agronholm2010-07-242-2/+3
* Removed is_job_active() since get_jobs() can be trivially used for the same p...agronholm2010-07-242-45/+43
* Divided Job into Job and SimpleJob to facilitate custom stateful jobsagronholm2010-07-241-6/+18
* Added test for combine_optsagronholm2010-07-241-0/+9
* Fixed job name related functionality and testsagronholm2010-07-231-5/+3
* Fixed print_jobs() and updated the relevant testagronholm2010-07-231-4/+4