-
Notifications
You must be signed in to change notification settings - Fork 27
TEST: PR-Validation #324
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
TEST: PR-Validation #324
Conversation
| for i in {1..30}; do | ||
| docker exec sqlserver \ | ||
| /opt/mssql-tools18/bin/sqlcmd \ | ||
| -S localhost \ |
Check notice
Code scanning / devskim
Accessing localhost could indicate debug code, or could hinder scaling. Note
| python -m pytest -v | ||
| displayName: 'Run Pytest to validate bindings' | ||
| env: | ||
| DB_CONNECTION_STRING: 'Server=tcp:127.0.0.1,1433;Database=master;Uid=SA;Pwd=$(DB_PASSWORD);TrustServerCertificate=yes' |
Check notice
Code scanning / devskim
Accessing localhost could indicate debug code, or could hinder scaling. Note
| # Wait for SQL Server to be ready | ||
| for i in {1..30}; do | ||
| if docker exec sqlserver-$(LINUX_TAG)-$(ARCH) /opt/mssql-tools18/bin/sqlcmd \ | ||
| -S localhost -U SA -P "$(DB_PASSWORD)" -C -Q "SELECT 1" >/dev/null 2>&1; then |
Check notice
Code scanning / devskim
Accessing localhost could indicate debug code, or could hinder scaling. Note
… bewithgaurav/test_python
Work Item / Issue Reference
Summary
Testing some stuff