Skip to content

Commit

Permalink
remove waitforproxeus Makefile commang
Browse files Browse the repository at this point in the history
  • Loading branch information
slavas490 committed Feb 2, 2024
1 parent 02e2562 commit b7eaeca
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ stopproxeus=pkill proxeus
startds=curl -s http://localhost:2115 > /dev/null || ( PROXEUS_DATA_DIR=$(1) docker-compose up -d document-service && touch $(1)/ds-started )
startnodes=curl -s http://localhost:8011 > /dev/null || (PROXEUS_PLATFORM_DOMAIN=http://$(DOCKER_GATEWAY):1323 NODE_CRYPTO_RATES_URL=http://localhost:8011 REGISTER_RETRY_INTERVAL=1 docker-compose -f docker-compose.yml -f docker-compose-extra.override.yml up -d node-crypto-forex-rates && touch $(1)/nodes-started )
startmongo=nc -z localhost 27017 2> /dev/null || (docker run -d -p 27017:27017 -p 27018:27018 -p 27019:27019 proxeus/mongo-dev-cluster && sleep 10 && touch $(1)/mongo-started)
waitforproxeus=echo "Waiting for Proxeus to start" ; curl --head -X GET --retry 120 --retry-connrefused --retry-delay 1 --silent -o /dev/null http://localhost:1323 && echo "Proxeus started" || echo "Unable to start Proxeus"

ifeq ($(coverage),true)
COVERAGE_OPTS=-coverprofile artifacts/[email protected] -coverpkg="$(coverpkg)"
Expand Down Expand Up @@ -192,7 +191,6 @@ test-ui: server ui
$(call startds,$(testdir))
$(call startnodes,$(testdir))
$(call startproxeus,$(testdir))
$(call waitforproxeus,$(testdir))
$(MAKE) -C test/e2e test; ret=$$?; \
$(stopproxeus); \
[ -e $(testdir)/ds-started ] && docker-compose down; \
Expand Down

0 comments on commit b7eaeca

Please sign in to comment.