Skip to content

Commit

Permalink
Remove SECRET_KEY in circle CI since it is defined in test settings
Browse files Browse the repository at this point in the history
  • Loading branch information
jxltom committed Nov 12, 2018
1 parent cd74214 commit dd8371e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .circleci/config.yml
Expand Up @@ -26,10 +26,9 @@ jobs:
name: Run tests
command: |
docker run -d --name db -e POSTGRES_USER=saleor -e POSTGRES_PASSWORD=saleor postgres:9.6-alpine
docker run --network container:db --rm -e DATABASE_URL -e SECRET_KEY mirumee/saleor:latest pytest
docker run --network container:db --rm -e DATABASE_URL mirumee/saleor:latest pytest
environment:
DATABASE_URL: postgres://saleor:saleor@localhost:5432/saleor
SECRET_KEY: irrelevant
- deploy:
name: Push Docker image
command: |
Expand Down

0 comments on commit dd8371e

Please sign in to comment.