Skip to content

Commit

Permalink
Uniform
Browse files Browse the repository at this point in the history
  • Loading branch information
victorcolombo committed Jun 19, 2023
1 parent 0275512 commit d94528e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@

name: Docker Integration Test

on: [pull_request]
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

defaults:
run:
Expand Down
2 changes: 1 addition & 1 deletion integration_test/scripts/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def run_test(self, test):
for input in inputs:
cmd = input['cmd']
container = input.get("node", "sei-node-0")
output = self.run_bash_command(cmd, True, container, env_map, True)
output = self.run_bash_command(cmd, True, container, env_map, False)
if input.get('env'):
env_map[input['env']] = output
result = output
Expand Down

0 comments on commit d94528e

Please sign in to comment.