mirror of
https://github.com/QingdaoU/OnlineJudge.git
synced 2024-12-28 16:12:13 +00:00
21 lines
641 B
YAML
21 lines
641 B
YAML
language: python
|
|
python:
|
|
- "3.6"
|
|
services:
|
|
- redis-server
|
|
- docker
|
|
before_install:
|
|
- docker pull postgres:10
|
|
- docker run -it -d -e POSTGRES_DB=onlinejudge -e POSTGRES_USER=onlinejudge -e POSTGRES_PASSWORD=onlinejudge -p 127.0.0.1:5433:5432 postgres:10
|
|
install:
|
|
- pip install -r deploy/requirements.txt
|
|
- echo `cat /dev/urandom | head -1 | md5sum | head -c 32` > data/config/secret.key
|
|
- sleep 10 && python manage.py migrate
|
|
script:
|
|
- docker ps -a
|
|
- flake8 .
|
|
- coverage run --include="$PWD/*" manage.py test
|
|
- coverage report
|
|
notifications:
|
|
slack: onlinejudgeteam:BzBz8UFgmS5crpiblof17K2W
|