forked from 00dani/lemoncurry
12 lines
193 B
YAML
12 lines
193 B
YAML
language: python
|
|
cache:
|
|
pip: true
|
|
directories:
|
|
- $HOME/.local/share/virtualenvs
|
|
python:
|
|
- '3.6'
|
|
install:
|
|
- pip install pipenv
|
|
- pipenv install --dev
|
|
script:
|
|
- pipenv run pytest
|