Skip to content

Commit

Permalink
Update .docker/tests/conftest.py
Browse files Browse the repository at this point in the history
  • Loading branch information
unkcpz authored Nov 14, 2023
1 parent 1046eca commit a2c486e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .docker/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ def docker_compose(docker_services):
return docker_services._docker_compose


def is_container_ready(dodkec_compose):
output = dodkec_compose.execute('exec -T aiida verdi status').decode().strip()
def is_container_ready(docker_compose):
output = docker_compose.execute('exec -T aiida verdi status').decode().strip()
return 'Connected to RabbitMQ' in output and 'Daemon is running' in output


Expand Down

0 comments on commit a2c486e

Please sign in to comment.