dhltrack/gitlab-ci.yml
2023-08-16 11:28:38 +02:00

15 lines
219 B
YAML

image: python:3.10
stages:
- test
before_script:
- python -V
- python -m venv venv
- source venv/bin/activate
- pip install -U pip
- pip install .
test:
stage: test
script: python -m unittest test.py