forked from ckan/ckanext-showcase
-
Notifications
You must be signed in to change notification settings - Fork 1
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 ckan#8 from clients/dga-uat
UAT merge for CKAN 2.7.4 deployment
- Loading branch information
Showing
37 changed files
with
1,520 additions
and
136 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 |
---|---|---|
@@ -1,14 +1,22 @@ | ||
language: python | ||
|
||
# the new trusty images of Travis cause build errors with psycopg2, see https://github.com/travis-ci/travis-ci/issues/8897 | ||
dist: trusty | ||
group: deprecated-2017Q4 | ||
|
||
python: | ||
- "2.6" | ||
- "2.7" | ||
env: | ||
- PGVERSION=9.1 CKANVERSION=master | ||
- PGVERSION=9.1 CKANVERSION=2.3 | ||
- PGVERSION=9.1 CKANVERSION=2.4.0 | ||
- CKANVERSION=master | ||
- CKANVERSION=2.7 | ||
- CKANVERSION=2.6 | ||
- CKANVERSION=2.5 | ||
- CKANVERSION=2.4 | ||
- CKANVERSION=2.3 | ||
install: | ||
- bash bin/travis-build.bash | ||
- pip install coveralls | ||
services: | ||
-postgresql | ||
script: sh bin/travis-run.sh | ||
after_success: | ||
- coveralls | ||
after_success: coveralls | ||
sudo: required |
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 |
---|---|---|
@@ -1,2 +1,3 @@ | ||
include README.rst | ||
recursive-include ckanext/showcase *.html *.json *.js *.less *.css | ||
recursive-include ckanext/showcase *.html *.json *.js *.less *.css | ||
recursive-include ckanext/showcase/i18n * |
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
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
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,7 @@ | ||
# this is a namespace package | ||
try: | ||
import pkg_resources | ||
pkg_resources.declare_namespace(__name__) | ||
except ImportError: | ||
import pkgutil | ||
__path__ = pkgutil.extend_path(__path__, __name__) |
Oops, something went wrong.