From 74954bfa915136c7998f8a0d9ca40b885075d409 Mon Sep 17 00:00:00 2001 From: jugglinmike Date: Mon, 1 May 2017 12:04:05 -0400 Subject: Introduce automated validation for test format (#994) This script is intended to identify common test file formatting errors prior to their acceptance into the project. It is designed to support future extensions for additional validation rules. --- .travis.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index f5788e9fd..0d8b7440a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,9 @@ language: python install: pip install --requirement tools/generation/requirements.txt script: - - echo The test generation tool should be working. + - ./tools/scripts/ci_build.sh - ./tools/generation/test/run.py - - sh ./tools/scripts/ci.sh + - ./tools/lint/test/run.py + - ./tools/scripts/ci_lint.sh after_success: - - sh ./tools/scripts/deploy.sh + - ./tools/scripts/deploy.sh -- cgit v1.2.1