Skip to content

Commit

Permalink
Chore: Make subprocess.check_call not suppress its output
Browse files Browse the repository at this point in the history
  • Loading branch information
amotl committed Feb 22, 2024
1 parent b53a35a commit 956cacb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/apache-superset/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def invoke_superset(command: str):
Invoke `superset` command.
"""
command = f"{superset_bin} {command}"
subprocess.check_call(shlex.split(command), env=superset_env, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
subprocess.check_call(shlex.split(command), env=superset_env)


# Test suite fixtures.
Expand Down

0 comments on commit 956cacb

Please sign in to comment.