nyaa/.travis.yml

32 lines
560 B
YAML
Raw Permalink Normal View History

2017-05-17 07:53:06 +00:00
language: python
python: "3.7"
2017-05-17 07:53:06 +00:00
dist: xenial
2017-06-07 16:25:34 +00:00
sudo: required
2017-05-17 07:53:06 +00:00
matrix:
fast_finish: true
2017-05-17 07:53:06 +00:00
cache: pip
2017-06-07 16:25:34 +00:00
services:
mysql
2017-05-17 07:53:06 +00:00
2017-06-07 16:25:34 +00:00
before_install:
- mysql -u root -e 'CREATE DATABASE nyaav2 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;'
2017-06-07 16:25:34 +00:00
install:
- pip install -r requirements.txt
- pip install pytest-cov
2017-06-07 16:25:34 +00:00
- sed "s/mysql:\/\/test:test123@/mysql:\/\/root:@/" config.example.py > config.py
- ./db_create.py
2017-06-07 16:25:34 +00:00
- ./db_migrate.py stamp head
script:
- ./dev.py test --cov=nyaa --cov-report=term tests
- ./dev.py lint
2017-05-17 08:20:42 +00:00
notifications:
email: false