Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tango
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LOFAR2.0
tango
Commits
82141053
Commit
82141053
authored
2 years ago
by
Corné Lukken
Browse files
Options
Downloads
Patches
Plain Diff
Ignore cover directory for start-ds
parent
5a556a45
No related branches found
No related tags found
1 merge request
!475
Draft: L2SS-938: Device server code coverage testing
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
bin/start-ds.sh
+1
-1
1 addition, 1 deletion
bin/start-ds.sh
tangostationcontrol/start.py
+25
-0
25 additions, 0 deletions
tangostationcontrol/start.py
with
26 additions
and
1 deletion
bin/start-ds.sh
+
1
−
1
View file @
82141053
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
tangostationcontrol/start.py
0 → 100644
+
25
−
0
View file @
82141053
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
()
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment