From dad2a411a4a4f92687cb61733ca46912b04102de Mon Sep 17 00:00:00 2001 From: Jeremy Fee <jmfee@usgs.gov> Date: Fri, 19 Dec 2014 16:28:30 -0700 Subject: [PATCH] Update config based on flattened layout --- gruntconfig/config.js | 1 - gruntconfig/flake8.js | 4 +--- gruntconfig/nose.js | 5 +---- gruntconfig/watch.js | 4 +--- 4 files changed, 3 insertions(+), 11 deletions(-) diff --git a/gruntconfig/config.js b/gruntconfig/config.js index b7abd694..8eb077ad 100644 --- a/gruntconfig/config.js +++ b/gruntconfig/config.js @@ -1,5 +1,4 @@ 'use strict'; module.exports = { - src: 'src' }; diff --git a/gruntconfig/flake8.js b/gruntconfig/flake8.js index 7524619b..29e566b9 100644 --- a/gruntconfig/flake8.js +++ b/gruntconfig/flake8.js @@ -1,10 +1,8 @@ 'use strict'; -var config = require('./config'); - module.exports = { options: { ignore: ['E122', 'E126', 'E127', 'E128', 'E131'] }, - src: [ config.src + '/**/*.py' ] + src: [ 'geomagio/**/*.py' ] }; diff --git a/gruntconfig/nose.js b/gruntconfig/nose.js index f642390e..bb8b1799 100644 --- a/gruntconfig/nose.js +++ b/gruntconfig/nose.js @@ -1,13 +1,10 @@ 'use strict'; -var config = require('./config'); - module.exports = { main: { options: { match: '[Tt]est', verbose: true - }, - src: [config.src + '/python'] + } } }; diff --git a/gruntconfig/watch.js b/gruntconfig/watch.js index 60ebbce6..cbe66a90 100644 --- a/gruntconfig/watch.js +++ b/gruntconfig/watch.js @@ -1,10 +1,8 @@ 'use strict'; -var config = require('./config'); - module.exports = { scripts: { - files: [config.src + '/**/*.py'], + files: ['geomagio/**/*.py'], tasks: ['lint', 'test'] }, gruntfile: { -- GitLab