Skip to content
Snippets Groups Projects
Commit 82141053 authored by Corné Lukken's avatar Corné Lukken
Browse files

Ignore cover directory for start-ds

parent 5a556a45
No related branches found
No related tags found
1 merge request!475Draft: L2SS-938: Device server code coverage testing
......@@ -37,7 +37,7 @@ else
rm -rf /tmp/tangostationcontrol
# Ideally we would use git copy but it can't copy on subdirectory level
# DO NOT PUT SPACES IN THE EXCLUDE LIST!
rsync -av --progress --exclude={".tox","*.egg-info","dist","build",".git","*.pyc"} /opt/lofar/tango/tangostationcontrol /tmp/
rsync -av --progress --exclude={".tox","*.egg-info","dist","build",".git","*.pyc","cover","docs/build"} /opt/lofar/tango/tangostationcontrol /tmp/
cd /tmp/tangostationcontrol || exit 1
pip -vvv install --upgrade --force-reinstall ./
fi
......
from tango import DeviceProxy
devices = [
# "STAT/Docker/1", # Docker controls the device containers, so it goes before anything else
"STAT/PSOC/1", # PSOC boot early to detect power delivery failure as fast as possible
"STAT/PCON/1", # PCON boot early because it is responsible for power delivery.
"STAT/APSPU/1", # APS Power Units control other hardware we want to initialise
"STAT/APSCT/1",
"STAT/CCD/1",
"STAT/RECV/1", # RCUs are input for SDP, so initialise them first
"STAT/UNB2/1", # Uniboards host SDP, so initialise them first
"STAT/SDP/1", # SDP controls the mask for SST/XST/BST/Beamlet, so initialise it first
"STAT/BST/1",
"STAT/SST/1",
"STAT/XST/1",
"STAT/Beamlet/1",
"STAT/AntennaField/1", # Accesses RECV
"STAT/TileBeam/1", # Accesses AntennaField
"STAT/DigitalBeam/1", # Accessed SDP and Beamlet
"STAT/TemperatureManager/1",
]
for device in devices:
d = DeviceProxy(device)
d.start_coverage()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment