Spaces:
Runtime error
Runtime error
| # .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!" | |