Skip to content

Commit

Permalink
chore: add missing test dependencies
Browse files Browse the repository at this point in the history
While packaging this module for Nix, I noticed during the tests that `flask` and `flask-compress` modules were missing from the `setup.py` file.
  • Loading branch information
drupol committed Nov 22, 2024
1 parent ad77e79 commit 9a06082
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def report(*args):

TUTORIALS_REQUIRES = INSIGHTS_REQUIRES + ["torchtext", "torchvision"]

TEST_REQUIRES = ["pytest", "pytest-cov", "parameterized"]
TEST_REQUIRES = ["pytest", "pytest-cov", "parameterized", "flask", "flask-compress"]

DEV_REQUIRES = (
INSIGHTS_REQUIRES
Expand Down

0 comments on commit 9a06082

Please sign in to comment.