15 lines
216 B
YAML
15 lines
216 B
YAML
stages:
|
|
- test
|
|
|
|
test:
|
|
image: python:3.11
|
|
stage: test
|
|
before_script:
|
|
- pip install --upgrade pip
|
|
- pip install -r requirements.txt
|
|
script:
|
|
- pytest -q
|
|
only:
|
|
- branches
|
|
- merge_requests
|