mathtext-fastapi / .gitlab-ci.yml
cetinca's picture
Draft: Dev package
5fb1d22
raw
history blame
No virus
305 Bytes
# Official Python language image.
test_py38:
image: python:3.8
before_script:
- python -v
- pip install -r requirements.txt
script:
- pytest --verbose
test_py39:
image: python:3.9
before_script:
- python -v
- pip install -r requirements.txt
script:
- pytest --verbose