dpdtrack/gitlab-ci.yml

16 lines
219 B
YAML
Raw Normal View History

2023-08-16 09:28:38 +00:00
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