File size: 321 Bytes
db3317c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# .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!"