Skip to content

Commit

Permalink
Add missing test dependency for FastAPI
Browse files Browse the repository at this point in the history
  • Loading branch information
EtiennePelletier committed Apr 24, 2023
1 parent ea1eed1 commit ac65b99
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"flask >= 2.1.0",
"quart >= 0.18.0",
"fastapi",
"starlette[full]",
"pytest",
"pytest_asyncio",
]
Expand Down
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
import flask
import pytest
import quart
from fastapi.testclient import TestClient
from jinja2 import Environment, FileSystemLoader, select_autoescape
from starlette.testclient import TestClient

from jinja2_fragments.fastapi import Jinja2Blocks
from jinja2_fragments.flask import render_block as flask_render_block
Expand Down

0 comments on commit ac65b99

Please sign in to comment.