Skip to content

Commit

Permalink
Merge pull request #293 from SEED-platform/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
mmclark committed Jul 20, 2015
2 parents fab1831 + 12cb75f commit 92e139e
Show file tree
Hide file tree
Showing 289 changed files with 10,057 additions and 16,387 deletions.
19 changes: 19 additions & 0 deletions .codeclimate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#
# ---Choose Your Languages---
# To disable analysis for a certain language, set the language to `false`.
# For help setting your languages:
# http://docs.codeclimate.com/article/169-configuring-analysis-languages
#
languages:
Ruby: false
JavaScript: true
Python: true
PHP: false
#
# ---Exclude Files or Directories---
# List the files or directories you would like excluded from our analysis.
# For help setting your exclude paths:
# http://docs.codeclimate.com/article/166-excluding-files-folders
#
exclude_paths:
- "seed/static/vendors/*"
23 changes: 12 additions & 11 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
.DS_Store
.idea/
.project
.pydevproject
.coverage
*~
*.pyc
*.swp
Expand All @@ -9,27 +13,23 @@ web_root/js/compressed.*.js
web_root/collected_static
pkgs/newrelic-1\.6\.0\.13
pkgs/newrelic-1\.6\.0\.13\.tar\.gz
.idea/
chromedriver.log
salad-test
BE/settings_local.py
BE/local_untracked.py
BE/settings/local_untracked.py
ipyton_input_log_history
ipython_input_log_history
.ipython_input_log_history
*.ipynb
**/ipython_input_log_history
web_root/csvs/*
web_root/uploads/*
web_root/images/sites/*
BE/settings/local_untracked.py
config/settings_local.py
config/local_untracked.py
config/settings/local_untracked.py
node_modules/*
web_root/CACHE
collected_static
celerybeat-schedule*
web_root/images/sites/*
.ipython_input_log_history
test.sqlite
media_root/*
media/*
Expand All @@ -38,12 +38,13 @@ bpd/data/epa*
bpd/data/BEDES*
**/*-old
lin/migrations/disabled
.coverage
htmlcov/
src/
*node_modules*
/seed/static/vendors/bower_components/fine-uploader/
seed/static/vendors/bower_components
seed/tests/api/*_seedhost.txt
docs/build/
.project
.pydevproject
dump.rdb
log
*.log

35 changes: 35 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
language: python

python:
- 2.7

addons:
postgresql: '9.4'

services:
- redis-server

env:
- DJANGO=1.6.7

before_install:
- export DJANGO_SETTINGS_MODULE=config.settings.travis

install:
- pip install -r requirements/test.txt
- pip install django==$DJANGO --quiet
- pip install psycopg2 --quiet
- pip install coveralls

before_script:
- psql -c "create database seeddb;" -U postgres
- ./bin/install_javascript_dependencies.sh
- cp config/settings/local_untracked.py.dist config/settings/local_untracked.py

script:
- coverage run manage.py test
- coverage report -m

after_script:
- coveralls

44 changes: 0 additions & 44 deletions BE/settings/aws/__init__.py

This file was deleted.

36 changes: 0 additions & 36 deletions BE/settings/ci.py

This file was deleted.

Loading

0 comments on commit 92e139e

Please sign in to comment.