Wiki
Clone wikiqatrackplus / admin / auto-schedule.md
Auto Scheduling Management Command
As of version 0.2.6 there is now a Django management command available to enable or disable auto scheduling or to update all due dates.
The following commands must be run from a command prompt at the root directory of your QATrack+ install.
To enable auto_scheduling for all test lists on all units:
python manage.py enable-all
To disable auto_scheduling for all test lists on all units:
python manage.py disable-all
To to update the due dates for all test lists on all units (according to the last performed date and assigned frequency):
python manage.py schedule-all
To to set the due date to null for all test lists on all units:
python manage.py unschedule-all
Updated