Created
May 7, 2020 10:52
-
-
Save merltron-pa/d0f43333536d861f40283ac836ea6c32 to your computer and use it in GitHub Desktop.
Example workflow used in this article: https://medium.com/@merlin.pav/cc1e2aacd9da?source=friends_link&sk=dcb39201c9d8bf917e1329af08ea1719
This file contains hidden or 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
- name: Install gettext for translations | |
run: | | |
sudo apt-get update && sudo apt-get install -y gettext | |
- name: Test with pytest | |
run: | | |
python manage.py compilemessages | |
pytest --verbose | |
env: | |
CLUSTER_ENV: test | |
RUN_DEV: 0 | |
POSTGRES_DB: backend_db | |
POSTGRES_USER: user | |
POSTGRES_PASSWORD: password | |
POSTGRES_DB_PORT: 5432 | |
POSTGRES_DB_HOST: localhost | |
SECRET_KEY: thisisasecret | |
SENDGRID_API_KEY: 'test-key' | |
PUBSUB_EMULATOR_HOST: localhost:8085 | |
GCLOUD_PUBSUB_PROJECT_ID: 'test-project' | |
HERBIE_TOKEN: 'random-key' | |
HERBIE_HOST: 'http://localhost:8000' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment