diff --git a/templates/index.html b/templates/index.html index 05ad04c1..2eebb754 100644 --- a/templates/index.html +++ b/templates/index.html @@ -4,8 +4,14 @@ - + + + + + + + + DevPath — Find Projects Based On Your Skills diff --git a/templates/project.html b/templates/project.html index d964fb74..799e1df4 100644 --- a/templates/project.html +++ b/templates/project.html @@ -3,6 +3,7 @@ + {{ project.title }} — DevPath diff --git a/tests/conftest.py b/tests/conftest.py new file mode 100644 index 00000000..07ec1942 --- /dev/null +++ b/tests/conftest.py @@ -0,0 +1,8 @@ +import pytest +from app import app + +@pytest.fixture +def client(): + app.config["TESTING"] = True + with app.test_client() as client: + yield client \ No newline at end of file