Skip to content

Commit

Permalink
Make integration passing
Browse files Browse the repository at this point in the history
  • Loading branch information
devops-blockchyp committed Jun 27, 2024
1 parent 1432623 commit c24e0f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -71,15 +71,13 @@ stage:

# Runs integration tests
.PHONY: integration
integration: clean
integration:
$(if $(LOCALBUILD), \
$(CARGO) build && $(CARGO) test $(if $(TEST),--test (TEST),--no-fail-fast), \
$(foreach path,$(CACHEPATHS),mkdir -p $(CACHE)/$(path) ; ) \
sed 's/localhost/$(HOSTIP)/' $(CONFIGFILE) >$(CACHE)/$(CONFIGFILE) ; \
$(DOCKER) run \
-v $(SCMROOT):$(SCMROOT):Z \
--memory 2G \
--memory-swap -1 \
$(foreach path,$(CACHEPATHS),-v $(CACHE)$(path):$(path):Z) \
-e BC_TEST_DELAY=$(BC_TEST_DELAY) \
-e HOME=$(HOME) \
Expand Down
2 changes: 1 addition & 1 deletion README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -5841,7 +5841,7 @@ To run the integration test suite via `make`, type the following command:
If you'd like to bypass make and run the integration test suite directly use the following command:

```
cargo test --no-fail-fast
cargo test --tests --no-fail-fast
```

If you'd like to run individual tests, try the following command:
Expand Down

0 comments on commit c24e0f1

Please sign in to comment.