https://github.com/doxakis/sql-server-integration-tests
Performing integration tests with SQL Server in the cloud with appveyor.
https://github.com/doxakis/sql-server-integration-tests
Last synced: 5 months ago
JSON representation
Performing integration tests with SQL Server in the cloud with appveyor.
- Host: GitHub
- URL: https://github.com/doxakis/sql-server-integration-tests
- Owner: doxakis
- License: mit
- Created: 2018-09-16T19:23:59.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-09-17T01:18:23.000Z (over 7 years ago)
- Last Synced: 2025-07-02T03:37:46.416Z (12 months ago)
- Size: 26.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SQL-Server-integration-tests [](https://ci.appveyor.com/project/doxakis/sql-server-integration-tests)
Performing integration tests with SQL Server in the cloud with appveyor.
Check out the files: appveyor.yml and test.sql
It uses Microsoft SQL Server 2017 and run the script `test.sql` with the `-b` option (terminate batch job if there is an error).
appveyor.yml:
```
services:
- mssql2017
build_script:
- sqlcmd -b -i test.sql
```
Calling for example ```THROW 50000,'My error msg.',1```, it will make the build fail in the cloud.
# Copyright and license
Code released under the MIT license.