13 lines
158 B
YAML
13 lines
158 B
YAML
image: "python:3.7"
|
|
|
|
before_script:
|
|
- python --version
|
|
- pip install -r requirements.txt
|
|
|
|
stages:
|
|
- test
|
|
|
|
test:
|
|
stage: test
|
|
script:
|
|
- pytest tests |