11 lines
177 B
YAML
11 lines
177 B
YAML
language: python
|
|
python:
|
|
- "3.6"
|
|
before_install:
|
|
- pip install pipenv
|
|
- pipenv install --dev --skip-lock
|
|
- gem install sass
|
|
- npm install
|
|
script:
|
|
- python -m pytest
|