Skip to content
Snippets Groups Projects
Commit d11914e0 authored by Martinez, Eric M.'s avatar Martinez, Eric M.
Browse files

Merge pull request #88 from jmfee-usgs/travis

Initial attempt at travis-ci configuration
parents 8ebc996d fb13eee6
No related branches found
No related tags found
No related merge requests found
language: python
python:
- 2.7
before_install:
## courtesy of http://conda.pydata.org/docs/travis.html
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh;
else
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
fi
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda update --yes conda
- conda info -a
## back to other dependencies
- nvm install stable
- nvm use stable
- npm install -g grunt-cli
- npm --version
- node --version
install:
- conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION numpy scipy nose flake8
- source activate test-environment
- pip install obspy
- npm install
script: grunt lint test
...@@ -6,14 +6,18 @@ module.exports = function (grunt) { ...@@ -6,14 +6,18 @@ module.exports = function (grunt) {
config.tasks.forEach(grunt.loadNpmTasks); config.tasks.forEach(grunt.loadNpmTasks);
grunt.initConfig(config); grunt.initConfig(config);
grunt.registerTask('lint', [
'flake8',
'jshint'
]);
grunt.registerTask('test', [ grunt.registerTask('test', [
'nose:main' 'nose:main'
]); ]);
grunt.registerTask('default', [ grunt.registerTask('default', [
'clean', 'clean',
'flake8', 'lint',
'jshint',
'test', 'test',
'watch' 'watch'
]); ]);
......
Geomag Algorithms Geomag Algorithms
================= =================
[![Build Status](https://travis-ci.org/usgs/geomag-algorithms.svg?branch=master)](https://travis-ci.org/usgs/geomag-algorithms)
Geomag algorithms includes tools to fetch, process, and output geomag data. Geomag algorithms includes tools to fetch, process, and output geomag data.
......
...@@ -23,6 +23,7 @@ ...@@ -23,6 +23,7 @@
"license": "Public Domain", "license": "Public Domain",
"dependencies": {}, "dependencies": {},
"devDependencies": { "devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-clean": "^0.7.0", "grunt-contrib-clean": "^0.7.0",
"grunt-contrib-jshint": "^0.10.0", "grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-watch": "^0.6.1", "grunt-contrib-watch": "^0.6.1",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment