Version History¶
v2.3.0¶
In driver/feature_scheduler_target.py, implement method to return target name in FeatureSchedulerDriver.
Update test_fbs_target.py to check target name with the correct source.
In model.py, synchronize filter information between the observatory model and the observatory state when configuring the models.
In model.py, update get_observatory_state to pass mounted and unmounted filter information.
In scheduler_csc.py, update _publish_settings to publish the camera configuration.
Update CSC state transition unit tests to check that observatory configuration events are all published.
Add unit test to check that CSC handles custom filters correctly.
In driver/feature_scheduler.py, update _get_validated_target_from_observation to handle condition where the filter name is not in the sky brightness list.
In model.py, add more logging in check_scheduled_target method.
In scheduler_csc.py, update _queue_one_script to retry adding scripts if it fails.
In scheduler_csc.py, update check_scheduled_targets method to update block status with ERROR state if there is a failure.
In driver/feature_scheduler.py, update parse_observation_database method to handle conditions when the observation fails to be parsed.
In model.py, update generate_target_queue to call synchronize_observatory_model and register_scheduled_targets before update_telemetry.
When update_telemetry is called, the conditions object in the feature scheduler is filled up with the information from the observatory model, so we need to sync before calling it.
In model.py, update generate_targets_in_time_window to use update_state instead of stop_tracking in the observatory model.
In model.py, update set_observatory_state to fill telescope and dome position from the current_target_state information and to allow passing current_filter and mounted_filters.
In scheduler_csc.py, remove observatory synchronization call from compute_predicted_schedule and add it to current_scheduler_state.
The idea is to capture the current state of the observatory before we store its state.
In scheduler_csc.py, add a synchronization mechanism to allow the advance target production loop to wait until observatory state is synchronized before it starts producing targets.
In scheduler_csc.py, fix an issue with the generate_target_queue method that would cause the scheduler to fault when there was no target produced but there was still targets being observed.
The method was prematurely calling handle_no_targets_on_queue, in this condition. Now it will only call it if there are no targets in the queue and nothing being observed.
Update CSC configuration schema to add an instrument_name parameter.
This will allow users to specify which instrument the Scheduler is supposed to look for to determine the instrument configuration.
In scheduler_csc.py, update configure method to create a remote for the MTCamera or CCCamera if they are defined as the instrument of interest.
Handling of LATISS will be included later.
In scheduler_csc.py, update the handle_observatory_state method to retrieve the current and mounted filters from the camera and pass that along to model.set_observatory_state.
v2.2.0¶
Update Scheduler CSC to work with rubin-scheduler v3.
Force output of the observation event when registering observations.
v2.1.1¶
In
driver/driver.py
, updateget_stop_tracking_target
to return a block with empty program. The previously used string (_Internal
) is no longer valid.
v2.1.0¶
Send block metadata to the ScriptQueue when queueing scripts.
Enforce block names to follow the pattern BLOCK-000 or BLOCK-T000.
Add support for users to customize the name of the cwfs survey.
Remove old code that added support for “supported commands”. This feature is now available in salobj directly and it not needed by the Scheduler, now that all the supported commands are released.
v2.0.1¶
Pin version of scipy.
v2.0.0¶
Moves from rubin-sim package to rubin-scheduler. The rubin-scheduler package contains all of the scheduling-related code from rubin-sim, but without MAF. This reduces the dependencies typically installed with rubin-sim, as well as reduces the default data download to only that required to run the scheduler.
Update documentation.
Add support for running CSC with Kafka version of salobj.
Update unit tests to conform with the refactor done in the code to implement the observing block feature.
Add test observing blocks.
Update test observing list for the
Sequence
driver.Update test SAL Scripts (both standard and external).
Update all tests data configuration files to be compatible with new configuration schema.
Add
tests/test_driver_target.py
with unit test for theDriverTarget
class.
In
utils/test/feature_scheduler_sim.py
, refactor of theFeatureSchedulerSim
to support the observing block feature.In
scheduler_csc.py
, major refactor of theSchedulerCSC
to implement the observing block feature.Make some improvement in long running commands such that they wait a fraction of a heartbeat to send the in progress ack.
Implement method to validate observing blocks and publish block info. Add support for either querying the ScriptQueue or reading script configuration from path.
Move code that publishes the settings events into a new method
_publish_settings
.Add new
idle_to_running
context manager to handle standalone operations when the scheduler is not running.Use the new
idle_to_running
context manager indo_computePredictedSchedule
command.Implement
addBlock
command._publish_block_info
update formatting ofevt_blockInventory
status
due to changes in theModel
class.Update reformatting in
_publish_settings
method.register_observation
, remove backward compatibility check and update observing block status (by calling_update_block_status
).Update
queue_targets
to log the targets in the queue.Update
advance_target_production_loop
to improve handling check target and timer task execution.put_on_queue
method, replace debug message by info message with more information about the targets.Update
put_on_queue
to update/publish block status (e.g. by calling_update_block_status
).Add new
_update_block_status
method to handle updating observing block status and publish the information.Limit the number of SAL Scripts the Scheduler adds to the queue at any given time.
Implement feature that allows blocks to run alongside the running scheduler.
Add support for a 3rd instance of the Scheduler to run alongside a 3rd instance of the queue.
Make blocks configurable.
In
model.py
:Major refactor of the
Model
class to implement the observing block feature.Refactor
Model.load_driver
to use newDriverFactory
class to load the driver instance.Add method to validate observing blocks when configuring the model.
Update
Model
to storeObservingBlockStatus
dataclass instead of theBlockStatus
enumeration inobserving_blocks_status
dictionary.Update
configure_telemetry_streams
to setuptelemetry_stream_handler
even if there is no defined telemetry stream.This is needed for the
Model
class to be able to query the status of the observing blocks at startup.Add
get_valid_observing_blocks
method to retrieve a list of blocks that are valid.Search blocks in subdirectories inside the block directory.
Add new submodule
driver/driver_factory.py
, defining aDriverFactory
class.This provides a better way to generate the driver class from an input option.
In
utils/parameters.py
, update default value forSchedulerCscParameters.driver_type
to account for changes in the schema.In
telemetry_stream_handler.py
, updateTelemetryStreamHandler.telemetry_stream_schema
to account for updates done in the schema.In
config_schema.py
, major refactor of the CSC configuration schema to support observing block and improve schema validation.Improvements include:
Make driver selection a fixed enumeration.
Have separate session for the different types of drivers.
Use conditional schema to match the selected driver to its configuration, making the appropriate session required according to the selected driver.
Make all sub-schemas fixed, do not accept additional properties.
In
utils/fbs_utils.py
, moves to inheriting from rubin_scheduler.scheduler.SchemaConverter, while extending the class to add a method to convert from an opsim database into a pandas dataframe (only).In
utils/csc_utils.py
:Add new
FailedStates
set to include all the possible failed states a script might have.Add new
BlockStatus
enumeration.
In
driver/survey_topology.py
, implement some minor cosmetic improvements toSurveyTopology
class.In
driver/feature_scheduler.py
, refactorFeatureScheduler
to accommodate changes done in theDriver
class and implement the observing block feature.In
driver/sequential.py
, refactor theSequential
class to account for the changes done inDriver
and implement the new observing block feature.In
driver/driver.py
, refactor theDriver
class to accommodate the changes done inDriverTarget
and integrate with the observing block feature.In
driver/feature_scheduler_target.py
, refactorFeatureSchedulerTarget
to conform with the newDriverTarget
interface and integrate it with the observing block feature.In
driver/driver_target.py
, refactorDriverTarget
class to integrate it with the observing block system.This class contains the main integration of the scheduler with the observing block system since this is the one in charge of converting an observing target into an observing script, which now becomes an observing block which can be multiple scripts.
Update conda recipe to include new
ts_observing
dependency.This package has the modules required to interface with the “observing blocks”, which is the main change introduce in this branch.
Update pre commit config file.
Add new
utils/types
submodule to hold type aliases definitions.Add new
observing_blocks
submodule defining theObservingBlockStatus
dataclass.Add github actions to do linting and ensure version history was updated.
Update
pyproject.toml
to stop running black and flake8 with pytest.
v1.20.0¶
Upgrade scheduler CSC codebase to be compatible with rubin-sim 1.
Remove unused
requirements.txt
file.Remove use of the deprecated
DowntimeModel
class.
v1.19.1¶
In
model.py
:Update
Model.get_number_of_scheduled_targets
to work whenscheduled_targets
is not set in theraw_telemetry
dictionary.Update
Model.generate_target_queue
to check iftarget
intargets
list isNone
and skip it.
v1.19.0¶
In
model.py
:Add new
select_next_targets
method that calls thedriver.select_next_targets
method to retrieve a list of targets.Update
generate_target_queue
to use theselect_next_targets
instead.
In
driver/feature_scheduler.py
, implementselect_next_targets
method.This method first runs
scheduler.request_observation
to get a single observation and prompt the feature scheduler to compute its internal queue. Then it checks if the scheduler queue has more targets, gets them all and flushes the queue.In
driver/driver.py
, add newselect_next_targets
method that returns a list of targets instead of a single target.Update conda recipe to restrict rubin-sim compatibility to version 0.
v1.18.0¶
Update CSC configuration schema to use an instance-based approach. This allows us to define the configuration for auxtel and maintel in a single configuration.
v1.17.1¶
In SchedulerCSC
:
Fix issue with
._publish_general_info
.Improve error handling in telemetry loop.
Fix
do_stop
method when called with theabort
option.Remove method that was moved to the
Model
class.
In Model
, add new get_scheduled_targets
method to retrieve the scheduled targets.
v1.17.0¶
Add new submodule
utils/scheduled_targets_info.py
defining a data classScheduledTargetsinfo`
which holds information about scheduled targets.This is going to be used by the
check_scheduled_targets
method in the (new)Model
class to return information about targets that were verified. This is part of a refactor of theSchedulerCSC
code which extracts into theModel
class some of the functionality related to the control loop operation, reducing the amount of code in the CSC and improving separation of concerns.Add new submodule
model.py
which implements theModel
class.This class holds the bulk of the logic behind the control loop operations. It contains the following information from the
SchedulerCSC
class:telemetry_stream_handler: Handle retrieval of telemetry from the EFD.
models: Dictionary with the available models.
raw_telemetry: Dictionary with all the raw telemetry values.
script_info: Dictionary with information about queued scripts.
driver: Instance of the scheduler driver, that encapsulates the mechanism to drive the scheduling algorithm.
In addition, the
Model
class now extracts from the CSC class all the logic to manage these resources, such that the CSC can call the model to execute the required operations. The idea is to improve the separation of concerns, improving the maintainability of the package, and reducing bloat in the CSC code.In
scheduler_csc.py
:Refactor
SchedulerCSC
to use the newModel
class.This removes a lot of the logic interacting with the
Driver
to generate targets into theModel
class, reducing the amount of code and operations implemented in the CSC.Add compatibility with xml 13.
Extract the
set_detailed_state
decorator from the CSC into the utility package.Remove
set_detailed_state
and use method defined inutils/csc_utils.py
.
v1.16.0¶
In
utils/csc_utils
, addDetailedState
enumeration.This enumeration will be removed once we release a version of ts-idl with it. For now it will be kept here for backward compatibility.
In
utils/exceptions
:Rename exception
UnableToFindTarget
toUnableToFindTargetError
.Add new exception
FailedToQueueTargetsError
.
In
scheduler_csc
:Fix typo in
begin_start
exception logging.Improve handling simulation mode and DRY operation mode in
begin_enabled
by merging condition into a single if statement.Background tasks management refactor:
Add a
_tasks
dictionary to store all background tasks that need to be managed by the CSC when going in and out of disabled state. Move taskstarget_production_task
andtelemetry_loop_task
to this new dictionary. Add methods_stop_all_background_tasks
and_stop_background_task
to handle stopping background tasks.In
begin_disable
, replace inline management of stoppingtarget_production_task
with call to_stop_all_background_tasks
.In
handle_summary_state
, replace management oftelemetry_loop_task
with call to_stop_all_background_tasks
.Add detailed state transition facility.
The detailed state transition is mostly managed using a decorator. Methods decorated with
set_detailed_state
will first acquire a detailed state lock, guaranteeing no other detailed state transition can happen at the same time. Then they assert that the detailed state isRUNNING
, otherwise they cannot go into one of the operational sub states. Next, the state switches to the desired new detailed state, executes the decorated coroutine and, once it is done, returns the system toRUNNING
. There are also methods to send the CSC from IDLE toRUNNING
and vise-versa.Refactoring
advance_target_loop
.Extract method to add targets to the queue into a new method
queue_targets
. This method will switch the detailed state toQUEUEING_TARGET
and execute the operations previously done inline inadvance_target_loop
. If the method fails to produce targets and fails to find a target in the future, it raises a new exceptionFailedToQueueTargetsError
.Change how
generate_target_queue
andcompute_predicted_schedule
runs.Instead of calling them sequentially, which causes a delay in producing targets, call
generate_target_queue
first and then, while waiting for targets to execute, callcompute_predicted_schedule
. This new way improves over the previous implementation but still leaves room for conditions wherecompute_predicted_schedule
can take longer to execute than the targets to be observed and then lead to additional delay. Nevertheless, conditions like this were only observed with the AuxTel configuration, which is a lot heavier than the one for the main telescope, and because there was a bug in the predictive loop which would continue to compute targets until the queue was filled up.Update to future-proof against deprecated feature in python>3.11. Stop using coroutine directly in
asyncio.wait
and schedule a task withasyncio.create_task
instead.In situations where the
generate_target_queue
can’t find a suitable target for the immediate future but succeeds in finding one in the future, the method waits for a timer task. When this condition happens, switch the detailed state toWAITING_NEXT_TARGET_TIMER_TASK
.Add info log message before entering the loop.
Minor cosmetic updates on
check_scheduled
to improve logging information.Instead of sending a debug message inside the loop, collect the messages and log them all in a single message at the end.
Rename exception
UnableToFindTarget
toUnableToFindTargetError
.Change how
_do_computePredictedSchedule
executescompute_predicted_schedule
.Instead of awaiting for the method directly, run it in a background task that is included in the
_tasks
dictionary. This way, if the CSC is disabled while executingcompute_predicted_schedule
, the_stop_all_background_tasks
will handle stopping the computation.
In
tests/test_advanced_target_loop.py
, update unit tests to check the DetailedState events published by the CSC.In
tests/test_csc.py
add newtest_disable_while_computing_predicted_schedule
unit test to check that thecomputing_predicted_schedule
is interrupted if the CSC is sent to DISABLED state.In
tests/test_csc.py
, check that CSC publishes detailed state on startup with the correct value.In
tests/conftest.py
:Fix start_ospl_daemon fixture handling condition where the ospl daemon is already running.
Update address of the sky brightness server in
download_sky_file
utility method.
v1.15.2¶
Delete examples directory with old, unused jupyter notebooks.
Update doc/conf.py to ignore style checks.
Add new test configurations for the Scheduler.
Add test fixture to download the required sky brightness files for the tests. The fixture is configured with a
session
scope and withautouse=True
, so tests dont need to request them. The fixture first tests to see if a suitabe sky brightness file exists and then proceeds to download it if not. If it can not file a suitable file in the server it fails with aRuntimeError
.In
DriverTarget
, fix parsing note into target name.Split the name in the first colon (
:
) and use the last part of the split. This works such that:PROJECT:TARGET_NAME
->TARGET_NAME
TARGET_NAME
->TARGET_NAME
PROJECT:TARGET_NAME:ADDITIONAL_INFO
->TARGET_NAME:ADDITIONAL_INFO
In
DriverTarget
setrequestTime
fromobs_time
instead oftime
.In
SchedulerCSC
updateinit_models
such that it will reset the models if it fails to configure one of them. This fixes an issue with the SchedulerCSC when it fails to setup a model due to transient reasons (e.g. lack of sky brightness files or misconfiguration) which then requires restarting the CSC when the condition is corrected. With this the CSC no longer needs to be restarted.Remove empty line in
SchedulerCSC.check_scheduled
docstring.In
SchedulerCSC._get_targets_in_time_window
fix 2 issues found during testing.The
predictedScheduler.mjd
fields were all set to zero, becausetarget.obs_time
is not set by the driver, because all observations are configured to be taken as soon as possible. Set the time fortime_scheduler_evaluation
.At each loop with a successful observation, update
time_scheduler_evaluation
to be at the end of the observation. This issue was causing the Scheduler to compute all the 1000 maximum observations.
In
SchedulerCSC.callback_script_info
fix setting the script_info index to usedata.scriptSalIndex
instead ofdata.salIndex
. The index is supposed to be the index of the SAL Script and not of the ScriptQueue. This was causing observations to not be properly registered by the scheduler.In
test_advanced_target_loop
updatetest_with_queue
to useadvance_target_loop_sequential_std_visit
configuration, wait for at least one script to finish executing and add check that observation event was published.In test_csc, update
test_compute_predicted_schedule
to use newadvance_target_loop_fbs
configuration and expand checks so it verifies the size of the computed predicted schedule and the values.Fix
standard_visit
test script and update script to only wait for a second before finishing. This script is used in unit tests.Add pre-commit-config file with configuration for pre-commit hooks.
Update pyproject.toml with configuration for isort.
Sort imports with isort.
v1.15.1¶
Improve how feature scheduler driver sets the object name and program on scripts.
v1.15.0¶
Update conda build to use pyproject.toml.
General updates in the tests and codebase to work with latest version of
rubin-sim
.In Scheduler CSC:
Update telemetry loop such that the CSC will only go to FAULT if it cannot determine the observatory state in case the CSC is in enabled, is running and the queue is also running.
Update
generate_target_queue
such that it will only executehandle_no_targets_on_queue
if no targets were found and there are no scheduled targets.Fix publishing time to next target in
estimate_next_target
.In Scheduler refactor handle_no_targets_on_queue to always run
estimate_next_target
but only schedule stop tracking target once per occurrence.
v1.14.0¶
In Scheduler CSC:
Add new command
computePredictedSchedule
, using the newsupport_command
utility to maintain backward compatibility.Publish general info.
Publish time to next target.
Add
compute_predicted_schedule
feature. The method runs in the advance control loop just after generating the target queue.Add
_get_targets_in_time_window
, to run the scheduler into the future until it produces a set number of targets or reaches the end of the specified time window.Refactor
estimate_next_target
to use_get_targets_in_time_window
.Add
current_scheduler_state
async context manager. This context manager stores a snapshot, optionally publishes it to the lfoa, yields and then restores the state of the scheduler.Refactor
generate_target_queue
to usecurrent_scheduler_state
context manager to handle the snapshot.Send ack in progress for all commands with a timeout of 1 min.
Update advance target loop unit test to check that the predicted target queue was published as expected, as well as the new events
timeToNextTarget
andgeneralInfo
.In csc_utils, add
support_command
method, to determine if the CSC supports a specific command. This is useful to provide backward compatibility with different xml versions.Add unit test for new
computePredictedSchedule
command.
v1.13.1¶
Add special condition/error code for when the CSC fails to update telemetry.
v1.13.0¶
In SchedulerCSC:
Implement cold start. This startup method is able to load observations from a local sql database or from an EFD query.
Implement warm start.
Refactor
configure_driver_hot
, separating its content into two new methods;_load_driver_from
and_handle_startup
.Add methods to handle the different startup types; hot, warm and cold.
Add
_handle_driver_configure_scheduler
coroutine to handle runningdriver.configure_scheduler
, which is a regular method.Update telemetry_loop so it will only go to fault if it cannot determine the observatory state if the CSC is in ENABLED state and running.
Add _handle_load_snapshot method to handle retrieving snapshots and running drive.load. Update do_load to use it.
Update typing and DriverTarget import statements.
Remove unecessary override of begin_start method.
Use register_observation when registering a target after observation was successfully completed.
In FeatureSchedulerDriver:
Add methods to support converting
observation
from EFD queries intoFeatureSchedulerTarget
objects.Add a
default_observation_database_name
property that is used as the default value forobservation_database_name
.Implement
FeatureSchedulerDriver.parse_observation_database
method.Implement
cold_start
andparse_observation_database
methods.Implement
register_observation
. The method will store the observations in a sqlite database that can later be loaded and played back during cold start.
In Driver base class:
Add methods convert_efd_observations_to_targets and _get_driver_target_from_observation_data_frame to deal with cold start.
Add get_survey_topology method to generate the survey topology and update configure_scheduler to use it.
Add register_observation method. This method should be called after the observation was successfully observed.
Add type hints.
In
utils/efd_utils
, add methods to mock querying the EFD for scheduler observations to use in unit testing cold start of the scheduler CSC.In
utils/csc_utils
, add methods to determine if a string is a valid EFD query, and a constant with the list of named parameters for an observation.Add unit test for
FeatureSchedulerDriver.parse_observation_database
method.Add new test utility submodule with a FeatureSchedulerSim class, to help simulate running the feature scheduler for unit testing.
Update configuration documentation with more detailed information about the different startup methods.
Update CSC unit tests to take into account new
SchedulerCSC.telemetry_loop
behavior. CSC now only goes to FAULT if it cannot determine the observatory state if it is in ENABLED state and running.Add test_csc_utils with unit tests for new is_uri utility method.
Add new csc_utils.is_uri method, to check if a string is a valid uri.
Update description of startup_type configuration parameter in config_schema.
Update FeatureScheduler unit tests to check register_observation data roundtrip (insertion and retrieval of data to a local databbase).
Add
SchemaConverter
utility for the feature scheduler. This class converts observations into entries in a sqlite database and vice-versa.In DriverTarget, implement get_observation and get_additional_information.
Add Observation data structure.
In efd_utils, fix mock imports.
Add type hints in DriverTarget.
Rename
Driver.register_observation
->Driver.register_observed_target
.
v1.12.0¶
Upgrade to salobj 7.
Update conda recipe to remove pins on ts-idl and ts-salobj.
v1.11.1¶
Improve handling of “no targets on queue” condition: * Add a custom exception to track when there are no new targets in the next allotted window. * Add new error code for this condition. * Improve error message.
Pin version of ts_salobj and ts_idl in conda recipe.
v1.11.0¶
Implement estimate_next_target. This method steps into the future to estimate how long it will take for the next target to be available. It is mostly used in the advance_target_production_loop when there are no targets to determine how long it will take for the next target. Then it sets a timer task that the loop can wait on until it evaluates the queue again. It also sets a maximum time which the scheduler can accomodate without new targets. If it takes longer than the allotted time, the scheduler will go to fault.
Support
program
field in unit tests for feature scheduler target.In
FeatureSchedulerTarget
, fill inprogram
field in script configuration.In
FeatureSchedulerDriver
pass logger toFeatureSchedulerTarget
.Add logger to
DriverTarget
.Add unit test for
FeatureSchedulerTarget
when running with multiple observations.In
FeatureSchedulerTarget
add support for multiple observations.Update setup.cfg to ignore everything under
doc/
.
v1.10.1¶
Add Jenkinsfile to build/upload documentation.
Update documentation.
Update .gitignore to ignore documentation build files.
v1.10.0¶
Updated unit tests for compatibility with ts_salobj 6.8, which is now required.
v1.9.0¶
Implement telemetry stream parsing on Scheduler CSC.
General improvements and bug fixes caught during night-time tests with the Auxiliary Telescope.
v1.8.0¶
Replace calls to
salobj
methods that moved to newutils
package.Improve how
salobj ` is imported in `tests/test_advanced_target_loop
.Move observing script setup to the
driver_configuration
section.Adds two new invalid configurations to check the CSC configuration schema.
Reformat
all_fields
test configuration.Changes in the CSC configuration schema:
Make the top level CSC configuration reject
additionalProperties
. This was used to pass in configurations for the driver, but had the drawback that it did not check the top level against mistakes.Add a new required configuration section for the driver; driver_configuration. This new section is basically an dictionary that users can rely on to pass in configurations for the drivers. The driver themselves will be in charge of verifying the configuration.
Fix issue in test_simple_target_loop, where it was not configuring the scheduler with the correct configuration.
Rename
DriverTarget.as_evt_topic
->DriverTarget.as_dict
.Fix issue in
advance_target_production_loop
when there are no target in thetarget_queue
.Fix
test_advance_target_loop
unit test.Move
DriverTarget
into its own sub-module indriver
.
v1.7.0¶
Replace lsst_sims with new rubin-sim conda package.
Add conda recipe and packaging script.
v1.6.0¶
Implement advance_target_production_loop.
Update test_simple_target_loop: * load a sequential scheduler during the test. * check error code when testing that the queue is not running.
Fix termination of simple_target_production_loop if something inside the try/except statement already put the CSC in FAULT.
Minor update to test_driver to setup logging.
Update test_csc to check error code when testing going to fault due to lack of observatory state updates.
Fix issue that would cause the scheduler to continuously go to fault state when the pointing component is not enabled.
Fix test SAL Scripts.
Implement save/reset scheduler state to/from file in the base Driver, in the FeatureScheduler and in the SequentialScheduler.
Remove usage of deprecated asynctest library.
Reorganize scheduler_csc module. * Move SchedulerCscParameters to a utils submodule. * Move error codes to a utils submodule. * Move Script “non final states” to a utils submodule.
Update scheduler CSC configuration to use new salobj methodology, using
config_schema.py
package instead of theschema.yaml
file.Enable pytest-black.
Support publishing CSC version.
v1.5.3¶
Reformat code using black 20.
Update documentation format.