File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 8787 cache-dependency-glob : " **/pyproject.toml"
8888 cache-suffix : ${{ matrix.uv-resolution }}
8989
90+ - name : Install the project and dependencies
91+ run : uv sync --all-extras --dev --resolution ${{ matrix.uv-resolution }}
92+
9093 - name : Run tests
9194 run : |
9295 # Install software and run tests
98101 # 127.0.0.1 is to persuade mysqlclient to use tcp rather than the domain socket :-/
99102 export DB_URL=mysql://root:mysql@127.0.0.1:3306/test_db
100103 fi
101- uv run --all-extras --dev $WITH --resolution ${{ matrix.uv-resolution }} -m coverage run -m pytest --sqlalchemy-connect-url=$DB_URL
104+ uv run --no-sync $WITH --resolution ${{ matrix.uv-resolution }} -m coverage run -m pytest --sqlalchemy-connect-url=$DB_URL
102105
103106 - name : Upload coverage data
104107 uses : actions/upload-artifact@v4
You can’t perform that action at this time.
0 commit comments