mathtext / .gitlab-ci.yml
cetinca's picture
Test file for text2int
db3317c verified
# .gitlab-ci.yml keyword reference
# https://docs.gitlab.com/ee/ci/yaml/
stages:
- test
test:
stage: test
image: python:3.10-slim-buster
before_script:
- echo "Test stage has started!"
script:
- pip install -r requirements.txt && pytest --verbose
after_script:
- echo "Test stage has finished!"