Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
CastorScript
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
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
atlas-tdaq-software
CastorScript
Commits
4c60fb9a
Commit
4c60fb9a
authored
6 years ago
by
Jonas
Browse files
Options
Downloads
Patches
Plain Diff
Added: Pylint and Docker script, updated unit_test script
parent
a992ceb9
Branches
14-streamline-testing-on-local-machines
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!20
Added: Pylint and Docker script, updated unit_test script
Pipeline
#747498
passed
6 years ago
Stage: test
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
readme
+2
-0
2 additions, 0 deletions
readme
run_docker_container.sh
+20
-0
20 additions, 0 deletions
run_docker_container.sh
run_pylint.sh
+8
-0
8 additions, 0 deletions
run_pylint.sh
run_unit_tests.sh
+8
-0
8 additions, 0 deletions
run_unit_tests.sh
with
38 additions
and
0 deletions
readme
+
2
−
0
View file @
4c60fb9a
...
...
@@ -11,6 +11,8 @@ Contents
pylintrc: configuration of pylint (used by CI)
readme: this file (are you even following?)
run_docker_container.sh: script to start a docker container in CWD for testing (must be run in CastorScript folder)
run_pylint.sh: script to run pylint on all files in Script
run_unit_tests.sh: script to search and run Python unit tests
script_setup.sh: script used in P1 to setup the running environment
watchdog.sh: script called by sysadmin's cron task that starts and maintains
...
...
This diff is collapsed.
Click to expand it.
run_docker_container.sh
0 → 100755
+
20
−
0
View file @
4c60fb9a
#!/bin/bash
# how to use docker for local testing
# install docker
# Logout and login again and run.
#================================
# run this command that does the following:
# 1 docker!
# 2 Create a new container,
# 3 with an interactive shell,
# 4 mount this dir (hopefully the CastorScript dir!) to the container,
# 5 mount other important storage locations (AFS, cvmfs etc),
# 6 remove the container after shutdown,
# 7 and run the centos7 image,
# 8 when started, run the run_unit_tests script in bash
# 1 2 3 4 5 6 7 8
# docker run -it --privileged -v `pwd`:`pwd` -w `pwd` -v /cvmfs:/cvmfs:shared,ro -v /afs:/afs:ro --rm=true gitlab-registry.cern.ch/atlas-tdaq-software/tdaq_ci:centos7 bash ./run_unit_tests.sh
# or without running the script:
docker run
-it
--privileged
-v
`
pwd
`
:
`
pwd
`
-w
`
pwd
`
-v
/cvmfs:/cvmfs:shared,ro
-v
/afs:/afs:ro
--rm
=
true
gitlab-registry.cern.ch/atlas-tdaq-software/tdaq_ci:centos7 bash
\ No newline at end of file
This diff is collapsed.
Click to expand it.
run_pylint.sh
0 → 100755
+
8
−
0
View file @
4c60fb9a
#!/bin/bash
# this script is made to run in docker
if
!
[
-v
TDAQ_LCG_RELEASE
]
then
source
/afs/cern.ch/atlas/project/tdaq/cmake/cmake_tdaq/bin/cm_setup.sh nightly
fi
/cvmfs/sft.cern.ch/lcg/views/
$TDAQ_LCG_RELEASE
/
$CMTCONFIG
/bin/pylint
$(
find Script/
-name
'*.py'
-a
-not
-name
config.py
)
\ No newline at end of file
This diff is collapsed.
Click to expand it.
run_unit_tests.sh
+
8
−
0
View file @
4c60fb9a
#!/bin/bash
# Warning dragons be here:
# this script is intended to run in a docker image with the following command:
# sudo docker run -it --privileged -v `pwd`:`pwd` -w `pwd` -v /cvmfs:/cvmfs:shared,ro -v /afs:/afs:ro --rm=true gitlab-registry.cern.ch/atlas-tdaq-software/tdaq_ci:centos7 bash ./run_unit_tests.sh
TOPDIR
=
$(
cd
`
dirname
$0
`
&&
echo
`
pwd
`
"/Script"
)
STARTDIR
=
$(
echo
$TOPDIR
"/UnitTests"
)
if
!
[
-v
TDAQ_LCG_RELEASE
]
then
source
/afs/cern.ch/atlas/project/tdaq/cmake/cmake_tdaq/bin/cm_setup.sh nightly
fi
python
-m
unittest discover
-t
$TOPDIR
-s
$STARTDIR
-p
"Test_*.py"
-f
--verbose
#for Gitlab CI:
...
...
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