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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LOFAR2.0
tango
Commits
a461e5dc
Commit
a461e5dc
authored
2 years ago
by
Stefano Di Frischia
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' into
L2SS-920
_make_statistics_writer_tolerant
parents
301d13bd
673aadb6
No related branches found
No related tags found
1 merge request
!421
Resolve L2SS-920 "Make statistics writer tolerant"
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+2
-1
2 additions, 1 deletion
.gitlab-ci.yml
tangostationcontrol/tox.ini
+22
-9
22 additions, 9 deletions
tangostationcontrol/tox.ini
with
24 additions
and
10 deletions
.gitlab-ci.yml
+
2
−
1
View file @
a461e5dc
...
@@ -527,7 +527,8 @@ xenon:
...
@@ -527,7 +527,8 @@ xenon:
shellcheck
:
shellcheck
:
stage
:
static-analysis
stage
:
static-analysis
script
:
script
:
# TODO(Corne): Ignore shell files in submodules
# TODO(Corne): L2SS-962: Ignore shell files in submodules
-
shellcheck --version
-
shellcheck **/*.sh
-
shellcheck **/*.sh
sphinx-documentation
:
sphinx-documentation
:
stage
:
documentation
stage
:
documentation
...
...
This diff is collapsed.
Click to expand it.
tangostationcontrol/tox.ini
+
22
−
9
View file @
a461e5dc
...
@@ -24,7 +24,11 @@ deps =
...
@@ -24,7 +24,11 @@ deps =
-r{toxinidir}/requirements.txt
-r{toxinidir}/requirements.txt
-r{toxinidir}/../docker-compose/lofar-device-base/lofar-requirements.txt
-r{toxinidir}/../docker-compose/lofar-device-base/lofar-requirements.txt
-r{toxinidir}/test-requirements.txt
-r{toxinidir}/test-requirements.txt
commands
=
{envpython} -m stestr run {posargs}
commands_pre
=
{envpython}
--version
commands
=
{envpython}
-m
stestr
--version
{envpython}
-m
stestr
run
{posargs}
[testenv:integration]
[testenv:integration]
; Warning running integration tests will make changes to your docker system!
; Warning running integration tests will make changes to your docker system!
...
@@ -37,6 +41,8 @@ setenv =
...
@@ -37,6 +41,8 @@ setenv =
PYTHON
=
{envpython} -m coverage run --source tangostationcontrol --parallel-mode
PYTHON
=
{envpython} -m coverage run --source tangostationcontrol --parallel-mode
commands
=
commands
=
echo
"Integration
test
directory
configured
for{env:TESTS_DIR}
({env:TEST_MODULE:default})"
echo
"Integration
test
directory
configured
for{env:TESTS_DIR}
({env:TEST_MODULE:default})"
{envpython}
-m
stestr
--version
{envpython}
-m
coverage
--version
{envpython}
-m
stestr
run
--serial
{posargs}
{envpython}
-m
stestr
run
--serial
{posargs}
{envpython}
-m
coverage
combine
{envpython}
-m
coverage
combine
{envpython}
-m
coverage
html
--omit
=
'*test*'
-d cover
{envpython}
-m
coverage
html
--omit
=
'*test*'
-d cover
...
@@ -54,16 +60,20 @@ deps =
...
@@ -54,16 +60,20 @@ deps =
-r{toxinidir}/../docker-compose/lofar-device-base/lofar-requirements.txt
-r{toxinidir}/../docker-compose/lofar-device-base/lofar-requirements.txt
-r{toxinidir}/test-requirements.txt
-r{toxinidir}/test-requirements.txt
commands
=
commands
=
{envpython}
-m
coverage
erase
{envpython}
-m
stestr
--version
{envpython}
-m
stestr
run
{posargs}
{envpython}
-m
coverage
--version
{envpython}
-m
coverage
combine
{envpython}
-m
coverage
erase
{envpython}
-m
coverage
html
--omit
=
'*test*'
-d cover
{envpython}
-m
stestr
run
{posargs}
{envpython}
-m
coverage
xml
-o
coverage.xml
{envpython}
-m
coverage
combine
{envpython}
-m
coverage
report
--omit
=
'*test*'
{envpython}
-m
coverage
html
--omit
=
'*test*'
-d cover
{envpython}
-m
coverage
xml
-o
coverage.xml
{envpython}
-m
coverage
report
--omit
=
'*test*'
; TODO(Corne): Integrate Hacking to customize pep8 rules
; TODO(Corne): Integrate Hacking to customize pep8 rules
[testenv:pep8]
[testenv:pep8]
commands
=
commands
=
{envpython}
-m
doc8
--version
{envpython}
-m
flake8
--version
{envpython}
-m
doc8
docs/source/
--ignore
D001
{envpython}
-m
doc8
docs/source/
--ignore
D001
{envpython}
-m
flake8
{envpython}
-m
flake8
...
@@ -73,18 +83,21 @@ commands =
...
@@ -73,18 +83,21 @@ commands =
; It thus matters what interfaces Docker will bind our
; It thus matters what interfaces Docker will bind our
; containers to, not what our containers listen on.
; containers to, not what our containers listen on.
commands
=
commands
=
{envpython}
-m
bandit
--version
{envpython}
-m
bandit
-r
devices/
-n5
-ll
-s
B104
{envpython}
-m
bandit
-r
devices/
-n5
-ll
-s
B104
[testenv:xenon]
;
[testenv:xenon]
;
commands
=
commands
=
{envpython}
-m
xenon
tangostationcontrol
-b
B
-m
A
-a
A
-i
libhdbpp-python
{envpython}
-m
xenon
--version
{envpython}
-m
xenon
tangostationcontrol
-b
B
-m
A
-a
A
-i
libhdbpp-python
[testenv:docs]
[testenv:docs]
deps
=
deps
=
-r{toxinidir}/../docker-compose/lofar-device-base/lofar-requirements.txt
-r{toxinidir}/../docker-compose/lofar-device-base/lofar-requirements.txt
-r{toxinidir}/docs/docs-requirements.txt
-r{toxinidir}/docs/docs-requirements.txt
commands
=
commands
=
sphinx-build
-W
-b
html
docs/source
docs/build/html
sphinx-build
--version
sphinx-build
-W
-b
html
docs/source
docs/build/html
[flake8]
[flake8]
filename
=
*.py,.stestr.conf,.txt
filename
=
*.py,.stestr.conf,.txt
...
...
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