Introduce CI/CD with tests #19

Merged
0950726 merged 3 commits from feat/ci-cd into dev 2025-12-03 15:23:38 +00:00
Showing only changes of commit f469e4ce36 - Show all commits

View File

@@ -21,6 +21,9 @@ install:
tags: tags:
- install - install
script: script:
- python -m virtualenv .venv
- source .venv/bin/activate
- echo /qi/pynaoqi-python2.7-2.5.7.1-linux64/lib/python2.7/site-packages/ > .venv/lib/python2.7/site-packages/pynaoqi-python2.7.pth
- pip install -r requirements.txt - pip install -r requirements.txt
artifacts: artifacts:
paths: paths:
@@ -35,4 +38,5 @@ test:
tags: tags:
- test - test
script: script:
- PYTHONPATH=${PYTHONPATH}:src pytest test/ - source .venv/bin/activate
- PYTHONPATH=src pytest test/