Create a specific ci-runner

To install a project-specific ci-runner:

Here is the corresponding .gitlab-ci.yml file executing the unit test.

 
#
# 
# 
stages:
    - testAll

testAll:
    stage: testAll
    tags: [pySpectra]
    script:
        - echo "testAll, USER $USER, HOME $HOME, PWD $PWD, DISPLAY $DISPLAY"
        - export DISPLAY=:1
        - python3 -m unittest discover -v
        - exit 0