We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83939af commit 3c236bfCopy full SHA for 3c236bf
1 file changed
.github/workflows/test_eessi_container_script.yml
@@ -17,6 +17,7 @@ jobs:
17
- help
18
- listrepos_default
19
- listrepos_custom
20
+ - no_cvmfs_mounts
21
- run
22
- shell
23
- container
@@ -70,6 +71,14 @@ jobs:
70
71
./eessi_container.sh --verbose --list-repos | tee ${outfile2}
72
grep "EESSI/20AB.CD" ${outfile2}
73
74
+ # test use of --repository None
75
+ elif [[ ${{matrix.SCRIPT_TEST}} == 'no_cvmfs_mount' ]]; then
76
+ outfile=out_nocvmfs.txt
77
+ ./eessi_container.sh --verbose --repository None --mode run mount | tee ${outfile}
78
+ # make sure that there are no CVMFS mounts in the container, i.e. mount does not have any lines line:
79
+ # cvmfs2 on /cvmfs/...
80
+ ! grep "^cvmfs" ${outfile}
81
+
82
# test use of --mode run
83
elif [[ ${{matrix.SCRIPT_TEST}} == 'run' ]]; then
84
outfile=out_run.txt
0 commit comments