fix GET issue breaking test

This commit is contained in:
ducoterra
2020-10-12 16:24:31 -04:00
parent 5b9e568d54
commit 03de5aacfb
8 changed files with 29 additions and 37 deletions

11
.vscode/launch.json vendored
View File

@@ -12,8 +12,11 @@
"args": [
"test",
],
"env": {
"DB_HOST": "localhost"
},
"django": true,
"preLaunchTask": "Migrate"
"preLaunchTask": "docker-compose up"
},
{
"name": "Run Server",
@@ -22,10 +25,12 @@
"program": "${workspaceFolder}/manage.py",
"args": [
"runserver",
"--noreload"
],
"env": {
"DB_HOST": "localhost"
},
"django": true,
"preLaunchTask": "Migrate"
"preLaunchTask": "docker-compose up"
}
]
}