Skip to content

Commit

Permalink
Disable CircleCI deployment.
Browse files Browse the repository at this point in the history
  • Loading branch information
fatlotus committed Apr 7, 2018
1 parent 11e795f commit 9be9d86
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
2 changes: 1 addition & 1 deletion caravel/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import sys
import os
import logging
sys.path.append(os.path.dirname(__file__) + "/../vendor")
sys.path[:0] = [os.path.dirname(__file__) + "/../vendor"]

from flask import Flask
app = Flask(__name__)
Expand Down
8 changes: 0 additions & 8 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,3 @@ test:
override:
- coverage run --source=caravel $(which nose2) --log-capture --plugin nose2.plugins.doctests --with-doctest
- coveralls || true

deployment:
app_engine:
branch: /.*/
commands:
- rm venv
- ~/google_appengine/appcfg.py update . -A caravel-code-reviews --version=$(git rev-parse --abbrev-ref HEAD) --oauth2_refresh_token=$OAUTH2_REFRESH_TOKEN
- if [ "$(git rev-parse --abbrev-ref HEAD)" = "master" ]; then ~/google_appengine/appcfg.py update . --version=$(git rev-parse --abbrev-ref HEAD) --oauth2_refresh_token=$OAUTH2_REFRESH_TOKEN; fi

0 comments on commit 9be9d86

Please sign in to comment.