10 lines
153 B
YAML
10 lines
153 B
YAML
|
|
pipeline:
|
||
|
|
install:
|
||
|
|
image: python:alpine
|
||
|
|
commands:
|
||
|
|
- pip install ".[tests]"
|
||
|
|
test:
|
||
|
|
image: python:alpine
|
||
|
|
commands:
|
||
|
|
- pytest
|