nyaa/.travis.yml

36 lines
731 B
YAML

# https://blog.travis-ci.com/2017-06-21-trusty-updates-2017-Q2-launch
# Reverts Trusty build environment version, because 2017Q2 is broken for OrderedDict.
group: deprecated-2017Q2
language: python
python: "3.6"
dist: trusty
sudo: required
matrix:
fast_finish: true
cache: pip
services:
mysql
before_install:
- mysql -u root -e 'CREATE DATABASE nyaav2 DEFAULT CHARACTER SET utf8 COLLATE utf8_bin;'
install:
- pip install -r requirements.txt
- pip install pytest-cov
- sed "s/mysql:\/\/test:test123@/mysql:\/\/root:@/" config.example.py > config.py
- python db_create.py
- ./db_migrate.py stamp head
script:
- pytest --cov=nyaa --cov-report=term tests
- ./lint.sh --check
notifications:
email: false