Skip to content

Commit

Permalink
fix how tests are run in pipeline
Browse files Browse the repository at this point in the history
using new docker composes that build on each other
  • Loading branch information
rlratcliffe committed Feb 27, 2024
1 parent 14a259b commit 75f4d39
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: |
echo Building docker image
docker-compose build
docker-compose -f docker-compose.yaml -f docker-compose.test.yaml up --abort-on-container-exit
docker-compose -f docker-compose.yaml -f docker-compose.dev.yaml -f docker-compose.test.yaml up --abort-on-container-exit
- name: Clean up
if: always()
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,8 @@ Overall objective is to build a dashboard in an iterative way and experience wha
## Local Tests & Running

```
docker-compose build
docker-compose -f docker-compose.yaml -f docker-compose.dev.yaml up
docker-compose -f docker-compose.yaml -f docker-compose.dev.yaml down
docker-compose -f docker-compose.yaml -f docker-compose.local.yaml down
```

## Slicing
Expand Down

0 comments on commit 75f4d39

Please sign in to comment.