Skip to content

Commit

Permalink
fix(ingest/test): Fix for mssql integration tests (#10978)
Browse files Browse the repository at this point in the history
  • Loading branch information
treff7es authored Jul 24, 2024
1 parent f0f226c commit 8d874ad
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def mssql_runner(docker_compose_runner, pytestconfig):
time.sleep(5)

# Run the setup.sql file to populate the database.
command = "docker exec testsqlserver /opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P 'test!Password' -d master -i /setup/setup.sql"
command = "docker exec testsqlserver /opt/mssql-tools18/bin/sqlcmd -C -S localhost -U sa -P 'test!Password' -d master -i /setup/setup.sql"
ret = subprocess.run(command, shell=True, capture_output=True)
assert ret.returncode == 0
yield docker_services
Expand Down

0 comments on commit 8d874ad

Please sign in to comment.