Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.21.0: Updated auxtel_telescope_and_dome_checkout references #110

Merged
merged 3 commits into from
Feb 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion conda/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ build:
- auxtel_slew_and_take_image_checkout = lsst.ts.IntegrationTests.auxtel_slew_and_take_image_checkout:run_auxtel_slew_and_take_image_checkout
- auxtel_standby_disabled = lsst.ts.IntegrationTests.auxtel_standby_disabled:run_auxtel_standby_disabled
- auxtel_stop = lsst.ts.IntegrationTests.auxtel_stop:run_auxtel_stop
- auxtel_telescope_dome_checkout = lsst.ts.IntegrationTests.auxtel_telescope_dome_checkout:run_auxtel_telescope_dome_checkout
- auxtel_telescope_and_dome_checkout = lsst.ts.IntegrationTests.auxtel_telescope_and_dome_checkout:run_auxtel_telescope_and_dome_checkout
- auxtel_track_target = lsst.ts.IntegrationTests.auxtel_track_target:run_auxtel_track_target
- auxtel_visit = lsst.ts.IntegrationTests.auxtel_visit:run_auxtel_visit
- comcam_calibrations = lsst.ts.IntegrationTests.comcam_calibrations:run_comcam_calibrations
Expand Down
12 changes: 12 additions & 0 deletions doc/version-history.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,18 @@ Version History
.. No new work should be required in order to complete this section.
.. Below is an example of a version history format.

v0.21.0
-------
* Added the 'and' into all instances of auxtel_telescope_and_dome_checkout.

v0.20.4
-------
* Fixed script names.

v0.20.3
-------
* Re-added M1M3.

v0.20.2
-------
* Added a shutdown script for MTOODS and MTHeaderService.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ auxtel_shutdown = "lsst.ts.IntegrationTests.auxtel_shutdown:run_auxtel_shutdown"
auxtel_slew_and_take_image_checkout = "lsst.ts.IntegrationTests.auxtel_slew_and_take_image_checkout:run_auxtel_slew_and_take_image_checkout"
auxtel_standby_disabled = "lsst.ts.IntegrationTests.auxtel_standby_disabled:run_auxtel_standby_disabled"
auxtel_stop = "lsst.ts.IntegrationTests.auxtel_stop:run_auxtel_stop"
auxtel_telescope_dome_checkout = "lsst.ts.IntegrationTests.auxtel_telescope_dome_checkout:run_auxtel_telescope_and_dome_checkout"
auxtel_telescope_and_dome_checkout = "lsst.ts.IntegrationTests.auxtel_telescope_and_dome_checkout:run_auxtel_telescope_and_dome_checkout"
auxtel_track_target = "lsst.ts.IntegrationTests.auxtel_track_target:run_auxtel_track_target"
auxtel_visit = "lsst.ts.IntegrationTests.auxtel_visit:run_auxtel_visit"
comcam_calibrations = "lsst.ts.IntegrationTests.comcam_calibrations:run_comcam_calibrations"
Expand Down
2 changes: 1 addition & 1 deletion python/lsst/ts/IntegrationTests/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
from .auxtel_slew_and_take_image_checkout import *
from .auxtel_standby_disabled import *
from .auxtel_stop import *
from .auxtel_telescope_dome_checkout import *
from .auxtel_telescope_and_dome_checkout import *
from .auxtel_track_target import *
from .auxtel_visit import *
from .comcam_calibrations import *
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ async def asyncSetUp(self) -> None:
# Start the controller and wait for it be ready.
await self.controller.start_task

async def test_auxtel_telescope_dome_checkout(self) -> None:
"""Execute the AuxTelTelescopeDomeCheckout integration test script,
async def test_auxtel_telescope_and_dome_checkout(self) -> None:
"""Execute the AuxTelTelescopeAndDomeCheckout integration test script,
which runs the auxtel/daytime_checkout/telescope_and_dome_checkout.py
in ts_standardscripts.
"""
Expand Down
Loading