File tree Expand file tree Collapse file tree 1 file changed +3
-13
lines changed
Expand file tree Collapse file tree 1 file changed +3
-13
lines changed Original file line number Diff line number Diff line change @@ -28,22 +28,12 @@ jobs:
2828 steps :
2929 - uses : actions/checkout@v5
3030 - uses : actions/setup-python@v6
31- id : python
3231 with :
3332 python-version : ${{ matrix.python }}
34- - name : Create Python virtual environment
35- run : |
36- ${{ steps.python.outputs.python-path }} -m venv test-venv
33+ - uses : astral-sh/setup-uv@v4
3734 - name : Install solc-select and test dependencies
38- shell : bash
3935 run : |
40- source test-venv/${{ (runner.os == 'Windows' && 'Scripts') || 'bin' }}/activate
41- python -m pip install --upgrade pip
42- pip3 install -e ".[dev]"
36+ uv sync --extra dev
4337 - name : Run Tests
44- shell : bash
4538 run : |
46- source test-venv/${{ (runner.os == 'Windows' && 'Scripts') || 'bin' }}/activate
47- # Run all tests in parallel
48- python -m pytest tests/ -v --tb=short -n auto
49-
39+ uv run python -m pytest tests/ -v --tb=short -n auto
You can’t perform that action at this time.
0 commit comments