You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
363 B
YAML
17 lines
363 B
YAML
sudo: required
|
|
|
|
language: python
|
|
|
|
python:
|
|
- "3.5"
|
|
|
|
services:
|
|
- docker
|
|
|
|
before_script:
|
|
- docker-compose -f docker-compose.yml -f docker-compose.ci.yml up --build -d
|
|
|
|
script:
|
|
- docker exec -it cvat /bin/bash -c 'python3 manage.py test cvat/apps/engine'
|
|
- docker exec -it cvat /bin/bash -c 'cd cvatjs && npm install && npm run test && npm run coveralls'
|