Skip to content

Commit

Permalink
💚 Update encrypted credentials to fix Travis
Browse files Browse the repository at this point in the history
  • Loading branch information
germanattanasio committed Nov 14, 2017
1 parent c9c1fc7 commit 079bf7f
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
Binary file modified .env.enc
Binary file not shown.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ python:
- '3.6'
cache: pip
before_install:
- openssl aes-256-cbc -K $encrypted_6e98b3e8e789_key -iv $encrypted_6e98b3e8e789_iv
-in .env.enc -out .env -d
- '[ "${TRAVIS_PULL_REQUEST}" = "false" ] && openssl aes-256-cbc -K $encrypted_6e98b3e8e789_key -iv $encrypted_6e98b3e8e789_iv -in .env.enc -out .env -d || true'
install: pip install tox-travis
script: tox
before_deploy:
Expand Down
2 changes: 1 addition & 1 deletion examples/conversation_v1.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
version='2017-04-21')

# replace with your own workspace_id
workspace_id = '0a0c06c1-8e31-4655-9067-58fcac5134fc'
workspace_id = '506e4a2e-3d5d-4dca-b374-38edbb4139ab'
if os.getenv("conversation_workspace_id") is not None:
workspace_id = os.getenv("conversation_workspace_id")

Expand Down
2 changes: 1 addition & 1 deletion examples/natural_language_classifier_v1.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from watson_developer_cloud import NaturalLanguageClassifierV1

# replace with your own classifier_id
classifier_id = '0a0c06c1-8e31-4655-9067-58fcac5134fc'
classifier_id = '9ddbcfx239-nlc-17541'
if os.getenv("natural_language_classifier_classifier_id") is not None:
classifier_id = os.getenv("natural_language_classifier_classifier_id")

Expand Down

0 comments on commit 079bf7f

Please sign in to comment.