11 lines
141 B
YAML
11 lines
141 B
YAML
image: python:rc
|
|
cache:
|
|
paths:
|
|
- ~/.cache/pip/
|
|
|
|
before_script:
|
|
- python -V
|
|
|
|
tests:
|
|
script:
|
|
- python -m unittest discover tests
|