mirror of
https://github.com/QingdaoU/OnlineJudge.git
synced 2024-12-29 00:22:03 +00:00
17 lines
404 B
YAML
17 lines
404 B
YAML
language: python
|
|
python:
|
|
- "3.6"
|
|
services:
|
|
- docker
|
|
install:
|
|
- pip install -r deploy/requirements.txt
|
|
- echo `cat /dev/urandom | head -1 | md5sum | head -c 32` > data/config/secret.key
|
|
- ./init_db.sh
|
|
script:
|
|
- docker ps -a
|
|
- flake8 .
|
|
- coverage run --include="$PWD/*" manage.py test
|
|
- coverage report
|
|
notifications:
|
|
slack: onlinejudgeteam:BzBz8UFgmS5crpiblof17K2W
|