-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #293 from SEED-platform/develop
Develop
- Loading branch information
Showing
289 changed files
with
10,057 additions
and
16,387 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/*" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.