зеркало из https://github.com/mozilla/bugbug.git
15 строки
360 B
YAML
15 строки
360 B
YAML
language: python
|
|
python:
|
|
- 3.6
|
|
install:
|
|
- pip install -r requirements.txt
|
|
- pip install -r test-requirements.txt
|
|
- python -m spacy download en
|
|
script:
|
|
- flake8
|
|
- python run.py --download --train --goal bug
|
|
- python run.py --goal bug
|
|
- python -m pytest tests/test_*.py
|
|
- python setup.py sdist
|
|
- pip install dist/bugbug-$(cat VERSION).tar.gz
|