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.
16 lines
320 B
YAML
16 lines
320 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 && tests/node_modules/.bin/karma start tests/karma.conf.js'
|