summaryrefslogtreecommitdiff
path: root/tests
Commit message (Expand)AuthorAgeFilesLines
* Fixed BlockingScheduler, BackgroundScheduler and GeventScheduler incorrectly ...Brendan McCollam2014-07-151-0/+20
* Use Float instead of BigInteger in SQLAlchemyJobStore to maintain proper job ...Alex Grönholm2014-07-071-0/+8
* Fixed falsely passing tests and the bugs they uncovered in BaseSchedulerAlex Grönholm2014-07-012-20/+20
* Bail out if the name of the local timezone cannot be determinedAlex Grönholm2014-06-281-0/+10
* Fixed EVENT_JOB_MISSED event not being created correctly in run_job()Alex Grönholm2014-06-271-8/+26
* Handle naive datetimes passed as next_run_timeBrendan McCollam2014-06-275-14/+19
* Defer replacing undefined options with defaults until the job is really sched...Alex Grönholm2014-06-184-9/+15
* Format tracebacks before trying to pass them from run_job() because they aren...Alex Grönholm2014-06-161-0/+20
* Raise ValueError instead of KeyError when attempting to add an executor or jo...Alex Grönholm2014-06-161-4/+4
* Added entry points for executors and job stores tooAlex Grönholm2014-06-161-3/+6
* Made the wakeup() method publicAlex Grönholm2014-06-161-7/+7
* Fixed infinite loop and index corruption in MemoryJobStoreAlex Grönholm2014-06-161-4/+35
* Separated the two pool executors to different classes and moved the debug exe...Alex Grönholm2014-06-152-8/+20
* Made the trigger plugins/classes lists privateAlex Grönholm2014-06-151-7/+7
* Added unit tests for the BaseScheduler classAlex Grönholm2014-06-154-370/+746
* Changed the trigger API to allow it to work with run times in the pastAlex Grönholm2014-05-313-82/+73
* Fixed AsyncIO not getting tested on Python 3.2 and lowerAlex Grönholm2014-05-301-2/+2
* Overhauled the tests for apscheduler.util moduleAlex Grönholm2014-05-301-120/+148
* Overhauled the tests for Job classAlex Grönholm2014-05-302-88/+227
* Tweaked the scheduler and job stores API and added the reschedule_job() methodAlex Grönholm2014-05-303-64/+53
* Removed job run counting and the max_runs options since they could not be rel...Alex Grönholm2014-05-284-18/+13
* Added API documentation for job storesAlex Grönholm2014-05-281-7/+7
* Fixed print_jobs() related tests on WindowsAlex Grönholm2014-05-281-9/+6
* Forgot to commit test_job after renaming Job.get_run_timesAlex Grönholm2014-05-261-3/+3
* Fixed Py3 unicode issueAlex Grönholm2014-05-261-1/+1
* Removed the JobHandle classAlex Grönholm2014-05-264-76/+35
* Added the end_date parameter to the cron and interval triggersAlex Grönholm2014-05-262-6/+23
* Fixed DST crossover handling in the Cron triggerAlex Grönholm2014-05-261-6/+6
* Fixed timezone handling bugs uncovered by the latest pytz updateAlex Grönholm2014-05-193-13/+13
* Replaced python-dateutil with pytz and tzlocal because dateutil can't handle ...Alex Grönholm2014-05-195-103/+104
* Fixed the positional-only arguments testAlex Grönholm2014-05-111-6/+16
* Added configurable job defaults for max_instances and max_runs and enabled a ...Alex Grönholm2014-04-212-6/+15
* Made the flake8 tests cover the "tests" directory as well and fixed the probl...Alex Grönholm2014-04-215-8/+11
* Used inspect.signature() to check arguments to otherwise uninspectable callablesAlex Grönholm2014-04-213-41/+55
* Automatically remove jobs that fail to deserialize or whose executor is not f...Alex Grönholm2014-04-201-3/+5
* Renamed _notify_listeners() to _dispatch_event()Alex Grönholm2014-04-202-4/+4
* Renamed logger to _logger for consistency with job stores and executorsAlex Grönholm2014-04-201-1/+1
* Added support for replacing an existing job (while preserving the run count)Alex Grönholm2014-04-191-0/+14
* Minor improvements to the job store and executor APIsAlex Grönholm2014-04-181-4/+4
* Use logger names consistently in the scheduler, executors and job storesAlex Grönholm2014-04-182-3/+4
* Added the ability to pause and resume jobsAlex Grönholm2014-04-182-0/+50
* Fixed datetime_to_utc_timestamp() losing microsecond accuracyAlex Grönholm2014-04-131-1/+1
* Fixed extraction of timezone from start_dateAlex Grönholm2014-04-131-0/+5
* Use non-ascii strings as id and name in the job defaults to catch unicode pro...Alex Grönholm2014-04-122-11/+27
* Fixed leftover test bug from the add_job() argument swapAlex Grönholm2014-04-121-1/+1
* Resurrected the Redis job store and fixed null next_run_time handling in othe...Alex Grönholm2014-04-101-7/+27
* Simplified the job store API and harmonized the Mongo/SQLAlchemy job store im...Alex Grönholm2014-04-101-51/+35
* Improved timezone support especially for the pytz module.Curtis Vogt2014-04-081-1/+73
* Switched the order of the "func" and "trigger" parameters around in add_job()Alex Grönholm2014-04-061-31/+39
* Made the timezone argument optional again where possibleAlex Grönholm2014-04-063-28/+26