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
Commits
cae2870c
Commit
cae2870c
authored
3 years ago
by
Corné Lukken
Browse files
Options
Downloads
Patches
Plain Diff
L2SS-259
: Clean up of some initial solutions
parent
c0878fdf
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!58
L2SS-259: Integrate unit tests using Continuous Integration (CI)
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+8
-5
8 additions, 5 deletions
.gitlab-ci.yml
devices/setup.cfg
+7
-10
7 additions, 10 deletions
devices/setup.cfg
devices/setup.py
+1
-0
1 addition, 0 deletions
devices/setup.py
with
16 additions
and
15 deletions
.gitlab-ci.yml
+
8
−
5
View file @
cae2870c
image
:
artefact.skatelescope.org/ska-tango-images/tango-itango:9.3.3.7
variables
:
PIP_CACHE_DIR
:
"
$CI_PROJECT_DIR/.cache/pip"
# The PBR dependency requires a set version, not actually used
PBR_VERSION
:
"
0.1"
cache
:
paths
:
-
.cache/pip
-
.tox
before_script
:
-
sudo apt-get update
-
sudo apt-get install -y git
-
devices/.tox
.before_script_template
:
&before_unit_test
before_script
:
-
sudo apt-get update
-
sudo apt-get install -y git
stages
:
-
linting
-
unit-tests
...
...
@@ -20,6 +22,7 @@ linting:
-
tox -e pep8
unit_test
:
stage
:
unit-tests
<<
:
*before_unit_test
script
:
-
cd devices
-
tox -e py37
\ No newline at end of file
-
tox -e py37
This diff is collapsed.
Click to expand it.
devices/setup.cfg
+
7
−
10
View file @
cae2870c
[metadata]
name
=
TangoStationControl
summary
=
LOFAR 2.0 Station Control
#
description-file =
#
README.
rst
description-file
=
README.
md
description-content-type
=
text/x-rst; charset=UTF-8
author
=
ASTRON
#home-page = https://dantalion.nl
#project_urls =
# Bug Tracker = https://github.com/Dantali0n/RadLoggerPy/issues
# Documentation = https://docs.openstack.org/pbr/
# Source Code = https://github.com/Dantali0n/radloggerpy
home-page
=
https://astron.nl
project_urls
=
Bug
Tracker
=
https://support.astron.nl/jira/projects/L2SS/issues/
Source
Code
=
https://git.astron.nl/lofar2.0/tango
license
=
Apache-2
classifier
=
Environment
::
Console
...
...
@@ -23,11 +22,9 @@ classifier =
Programming
Language
::
Python
::
3.9
[files]
packages
=
./
package_dir
=
./
[entry_points]
console_scripts
=
SDP
=
SDP:main
PCC
=
PCC:main
This diff is collapsed.
Click to expand it.
devices/setup.py
+
1
−
0
View file @
cae2870c
import
setuptools
# Requires: setup.cfg
setuptools
.
setup
(
setup_requires
=
[
'
pbr>=2.0.0
'
],
pbr
=
True
)
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