Skip to content

Commit

Permalink
NK-2444 remove stderr parameter which causes errors to be written to …
Browse files Browse the repository at this point in the history
…the output list of services
  • Loading branch information
shaitourchin committed Oct 31, 2021
1 parent b2452d1 commit acf4a2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker_test_tools/environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def get_services(self):
try:
services_output = subprocess.check_output(
['docker-compose', '-f', self.compose_path, '-p', self.project_name, 'config', '--services'],
stderr=subprocess.STDOUT, env=self.environment_variables
env=self.environment_variables
)

except subprocess.CalledProcessError as error:
Expand Down

0 comments on commit acf4a2a

Please sign in to comment.