diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4eca773..c62b7a8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,7 +22,7 @@ jobs: cache: pip cache-dependency-path: pyproject.toml - name: Install dependencies - run: pip install -e .[test,sqlmodel] + run: pip install -e .[test] - name: Test with pytest run: coverage run -m pytest - name: Upload Coverage diff --git a/pyproject.toml b/pyproject.toml index d281c50..8f0c082 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -41,6 +41,7 @@ dynamic = ["version"] [project.optional-dependencies] test = [ + "sqlacodegen[sqlmodel]", "pytest >= 7.4", "coverage >= 7", "psycopg2-binary",