mirror of
https://github.com/sb745/NyaaV3.git
synced 2025-03-11 13:26:56 +02:00
30 lines
545 B
YAML
30 lines
545 B
YAML
language: python
|
|
|
|
python: "3.13"
|
|
|
|
dist: jammy
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
|
|
cache: pip
|
|
|
|
services:
|
|
mysql
|
|
|
|
before_install:
|
|
- mysql -u root -e 'CREATE DATABASE nyaav3 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;'
|
|
|
|
install:
|
|
- pip install -r requirements.txt
|
|
- pip install pytest-cov
|
|
- sed "s/mysql:\/\/test:test123@/mysql:\/\/root:@/" config.example.py > config.py
|
|
- ./db_create.py
|
|
- ./db_migrate.py stamp head
|
|
|
|
script:
|
|
- ./dev.py test --cov=nyaa --cov-report=term tests
|
|
- ./dev.py lint
|
|
|
|
notifications:
|
|
email: false
|