Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/liteobject/integration.test.in.pipeline
Demo of integration test in Azure pipeline using docker container
https://github.com/liteobject/integration.test.in.pipeline
api azure container docker integration-testing mssql-database pipeline
Last synced: 24 days ago
JSON representation
Demo of integration test in Azure pipeline using docker container
- Host: GitHub
- URL: https://github.com/liteobject/integration.test.in.pipeline
- Owner: LiteObject
- Created: 2023-04-08T12:50:37.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-05-17T17:05:40.000Z (over 1 year ago)
- Last Synced: 2024-11-07T22:13:10.895Z (3 months ago)
- Topics: api, azure, container, docker, integration-testing, mssql-database, pipeline
- Language: C#
- Homepage:
- Size: 25.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Demo of integration test in Azure pipeline using docker container
### To run the integration test project locally, make sure you have docker engine installed and run the following command:
* `docker run --name mymssqlserver -e 'ACCEPT_EULA=Y' -e 'MSSQL_SA_PASSWORD=myPa55w0rd' -p 1433:1433 -e 'MSSQL_PID=Standard' -d mcr.microsoft.com/mssql/server:2019-latest`
* If you change any param values in the above command, then please update `appsettings.json` file as needed.
### To run the API locally, you will need to run the above command to create an instance of the MSSQL server database.