Details
-
Type:
Story
-
Status: Done
-
Resolution: Done
-
Fix Version/s: None
-
Component/s: ts_aos
-
Story Points:5
-
Team:Telescope and Site
-
Urgent?:No
Description
In ts_wep cwfs.Instrument gets the focus offset by converting the user input value into a string and then looking it up the value of the string in a separate configuration file. This needs to be more flexible for running at the summit and this lookup needs to be replaced by just using a value passed by the user.
The unit test on Jenkins stuck on the Jenkins build. Rob Bovill kindly suggested to add the following label in in the block of agent in Jenkinsfile:
label 'Node2_8CPU'
Therefore,
agent {
// Use the docker to assign the Python version.
// Use the label to assign the node to run the test.
// It is recommended by SQUARE team do not add the label to let the
// system decide.
// But in some cases, we do need to put the label to assign the specific
// node to use.
docker {
image 'lsstts/develop-env:develop'
args "-u root --entrypoint=''"
label 'Node2_8CPU'
}
}
Please consider this. Thanks!