You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- matrix:
- include:
- - language: python
- python:
- - "3.4"
- before_install:
- - cd cli
- install:
- - pip install -r requirements.txt -r test-requirements.txt
- script:
- - python -m unittest discover
-
- - language: python
- python:
- - "3.4"
- before_install:
- - cd containers/backend
- install:
- - pip install -r requirements.txt
- script:
- - python manage.py test
-
- - language: generic
- services:
- - docker
- before_script:
- - cd containers
- script:
- - ./test.sh
-
- - language: node_js
- node_js:
- - "lts/*"
- addons:
- chrome: stable
- cache: yarn
- install:
- - yarn install
- script:
- - yarn test
|