12 lines
223 B
YAML
12 lines
223 B
YAML
|
language: python
|
||
|
python:
|
||
|
- "3.6"
|
||
|
- "3.7"
|
||
|
- "3.8"
|
||
|
install:
|
||
|
- pip install pipenv pytest
|
||
|
- pipenv install
|
||
|
- pytest # <== This runs in Pipenv (a/k/a virtualenv)
|
||
|
# command to run tests
|
||
|
script:
|
||
|
- pytest
|