update travis to use makefile

This commit is contained in:
Damien Elmes 2019-12-18 11:13:23 +10:00
parent c1cbab0d23
commit f7091d5273
3 changed files with 2 additions and 27 deletions

View File

@ -1,12 +0,0 @@
#!/bin/bash
set -e
echo "building ui..."
./tools/build_ui.sh
echo "running unit tests..."
nosetests ./tests
echo "linting..."
./tools/lint.sh

View File

@ -1,13 +0,0 @@
#!/bin/bash
set -e
echo "building ui..."
./tools/build_ui.sh
echo "running unit tests..."
nosetests ./tests
echo "type checking..."
./tools/typecheck-setup.sh
./tools/typecheck.sh

View File

@ -11,6 +11,6 @@ install:
jobs:
include:
- python: 3.6
script: ./.travis.py36.sh
script: make -j 4 test lint mypy
- python: 3.7
script: ./.travis.py37.sh
script: ./tools/typecheck-setup.sh && make -j 4 check