obj2html/.gitlab-ci.yml

8 lines
184 B
YAML
Raw Permalink Normal View History

2021-11-13 07:00:47 -07:00
python_test:
image: python:3.8.5
script:
- pip install --upgrade pip
- pip install coverage
2021-11-13 07:33:54 -07:00
- coverage run --source=obj2html -m unittest discover
2021-11-13 07:00:47 -07:00
- coverage report