No tests yet, duh.

This commit is contained in:
Will O'Beirne 2018-09-11 15:37:57 -04:00
parent eb15c91a6b
commit e562843146
No known key found for this signature in database
GPG Key ID: 44C190DB5DEAF9F6
1 changed files with 13 additions and 2 deletions

View File

@ -1,16 +1,27 @@
matrix: matrix:
include: include:
# Frontend
- language: node_js - language: node_js
node_js: 8.11.4 node_js: 8.11.4
install: yarn install: yarn
before_script: before_script:
- cd frontend/ - cd frontend/
script: script:
- yarn run test - yarn run lint
- yarn run tsc
# Backend
- language: python - language: python
python: 3.6 python: 3.6
install: pip install -r requirements/dev.txt install: pip install -r requirements/dev.txt
before_script: before_script:
- cd backend/ - cd backend/
script: script:
- flask test - flask test
# Contracts
- language: node_js
node_js: 8.11.4
install: yarn
before_script:
- cd contract/
script:
- yarn run test