We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 147eaea commit d4bf48dCopy full SHA for d4bf48d
.travis.yml
@@ -1,6 +1,10 @@
1
language: csharp
2
dist: trusty
3
sudo: required
4
+services:
5
+ - postgresql
6
+before_script:
7
+ - psql -c 'create database JsonApiDotNetCoreExample;' -U postgres
8
mono: none
9
dotnet: 1.0.0-preview2-1-003177
10
script:
test/JsonApiDotNetCoreExampleTests/appsettings.json
@@ -1,6 +1,6 @@
{
"Data": {
- "DefaultConnection": "User ID=dotnet;Password=;Host=localhost;Port=5432;Database=JsonApiDotNetCoreExampleTests;Pooling=true;"
+ "DefaultConnection": "Host=localhost;Port=5432;Database=JsonApiDotNetCoreExample;User ID=postgres;Password="
},
"Logging": {
"IncludeScopes": false,
0 commit comments