docker-compose

This commit is contained in:
2019-10-31 22:37:04 +01:00
parent 14b83949e0
commit a8afb8882d
13 changed files with 146 additions and 37 deletions

View File

@@ -1,13 +1,11 @@
"""
TODO: set up a test db or mocks instead of relying there being at least one item available in most of the 'get' tests.
"""
from pytest import skip, mark
from starlette.testclient import TestClient
from app.crud import create_thing
from app.models import Resume, Availability, Project, Post
from config import PERSONAL_API_USERNAME, PERSONAL_API_PASS
from app.main import app
from personal_api.main import app
from personal_api.models import Resume, Availability, Project, Post
client = TestClient(app)