Skip to content
GitLab
Explore
Sign in
Register
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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LOFAR2.0
tango
Merge requests
!423
L2SS-951
: Disable site-packages and install pytango in tox
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
L2SS-951
: Disable site-packages and install pytango in tox
L2SS-951
into
master
Overview
5
Commits
18
Pipelines
0
Changes
16
Merged
Corné Lukken
requested to merge
L2SS-951
into
master
2 years ago
Overview
5
Commits
18
Pipelines
0
Changes
16
Expand
Closes
L2SS-951
Edited
2 years ago
by
Corné Lukken
0
0
Merge request reports
Compare
master
version 14
271cd222
2 years ago
version 13
c345077a
2 years ago
version 12
dcfe8a0e
2 years ago
version 11
8c8a1613
2 years ago
version 10
f8b47e21
2 years ago
version 9
c2ac8a3e
2 years ago
version 8
af9badc8
2 years ago
version 7
57210627
2 years ago
version 6
6855dbdf
2 years ago
version 5
cd4ea53c
2 years ago
version 4
19d29491
2 years ago
version 3
7f88a42c
2 years ago
version 2
ca90b7c4
2 years ago
version 1
432a60d8
2 years ago
master (base)
and
latest version
latest version
350c9880
18 commits,
2 years ago
version 14
271cd222
17 commits,
2 years ago
version 13
c345077a
27 commits,
2 years ago
version 12
dcfe8a0e
25 commits,
2 years ago
version 11
8c8a1613
24 commits,
2 years ago
version 10
f8b47e21
23 commits,
2 years ago
version 9
c2ac8a3e
10 commits,
2 years ago
version 8
af9badc8
8 commits,
2 years ago
version 7
57210627
7 commits,
2 years ago
version 6
6855dbdf
6 commits,
2 years ago
version 5
cd4ea53c
5 commits,
2 years ago
version 4
19d29491
4 commits,
2 years ago
version 3
7f88a42c
3 commits,
2 years ago
version 2
ca90b7c4
2 commits,
2 years ago
version 1
432a60d8
1 commit,
2 years ago
16 files
+
134
−
59
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
16
Search (e.g. *.vue) (Ctrl+P)
bin/start-ds.sh
+
3
−
3
Options
@@ -35,10 +35,10 @@ else
# Install the package, exit 1 if it fails
# pip install ./ will _NOT_ install dependencies in requirements.txt!
rm
-rf
/tmp/tangostationcontrol
cp
-R
/opt/lofar/tango/tangostationcontrol /tmp/
# 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/
cd
/tmp/tangostationcontrol
||
exit
1
# Remove the build directory if copied from the source
rm
-rf
build
pip
-vvv
install
--upgrade
--force-reinstall
./
fi
Loading