Skip to content

Commit

Permalink
reorder e2e test order
Browse files Browse the repository at this point in the history
  • Loading branch information
rnbguy committed Apr 24, 2024
1 parent 8d8e8d7 commit dbb8c6b
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions ci/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,19 @@ create-channel:
bash ~/tests/create-channel.sh
@echo "Channel created"

token-transfer: upgrade-client
token-transfer: create-channel
@echo "Transferring tokens..."
bash ~/tests/token-transfer.sh
@echo "Tokens transferred"

upgrade-client: create-channel
@echo "Upgrading client..."
bash ~/tests/upgrade-client.sh
@echo "Client upgraded"

grpc-service: upgrade-client
grpc-service: token-transfer
@echo "Testing gRPC services..."
bash ~/tests/grpc-service.sh
@echo "gRPC services working"

# This test halts `gaiad` at the end.
# So, this must be the last test that involves `gaiad`.
upgrade-client: token-transfer
@echo "Upgrading client..."
bash ~/tests/upgrade-client.sh
@echo "Client upgraded"

0 comments on commit dbb8c6b

Please sign in to comment.