Skip to content

Commit

Permalink
sbt it depends on a locally built sipi image
Browse files Browse the repository at this point in the history
  • Loading branch information
seakayone committed Dec 1, 2022
1 parent 4475420 commit 4ea0a7b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test.yml
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Run preparatory steps
uses: dasch-swiss/dsp-api/.github/actions/preparation@main
- name: Run all integration tests
run: sbt -v coverage "IntegrationTest/test" coverageAggregate
run: make integration-test
- name: Upload coverage data to codacy
uses: codacy/codacy-coverage-reporter-action@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -209,7 +209,7 @@ test: ## runs all unit tests
sbt -v coverage test coverageAggregate

.PHONY: integration-test
integration-test: build ## runs all integration tests
integration-test: docker-build-sipi-image ## runs all integration tests
sbt -v coverage "IntegrationTest/test" coverageAggregate

.PHONY: test-shared
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -106,7 +106,7 @@ sbt test
Run integration tests:

```shell
sbt it
make integration-test
```

Run all tests:
Expand Down

0 comments on commit 4ea0a7b

Please sign in to comment.