From 82541b9b861ae5e00006ea502609c82cb6409e39 Mon Sep 17 00:00:00 2001 From: zakx Date: Mon, 10 Apr 2017 22:55:55 +0200 Subject: [PATCH] Updating travis file to use Makefile commands --- .travis.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3f55eeb22b..42c419baae 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,11 +3,8 @@ python: - 3.4 before_install: - - pip install pep8 - - pip install django - - pip install djangorestframework - + - make setup + script: - - python pep_check.py - - python InvenTree/manage.py check - - python InvenTree/manage.py test --noinput \ No newline at end of file + - make style + - make test