File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -132,20 +132,23 @@ jobs:
132132 # python -c "import urllib.request as r; exec(r.urlopen('https://bit.ly/pydoctor').read())"
133133 env | sort
134134
135- - name : " Install dependencies"
136- run : |
137- set -xe
138- python -m pip install -r requirements/tox.pip
135+ # - name: "Install dependencies"
136+ # run: |
137+ # set -xe
138+ # python -m pip install -r requirements/tox.pip
139+
140+ - name : Install uv
141+ uses : hynek/setup-cached-uv@v2
139142
140143 - name : " Run tox for ${{ matrix.python-version }}"
141144 run : |
142- python -m tox -- -rfsEX
145+ uvx --with tox-uv tox -- -rfsEX
143146
144147 - name : " Retry tox for ${{ matrix.python-version }}"
145148 if : failure()
146149 run : |
147150 # `exit 1` makes sure that the job remains red with flaky runs
148- python -m tox -- -rfsEX --lf -vvvvv && exit 1
151+ uvx --with tox-uv tox -- -rfsEX --lf -vvvvv && exit 1
149152
150153 # This job aggregates test results. It's the required check for branch protection.
151154 # https://github.com/marketplace/actions/alls-green#why
You can’t perform that action at this time.
0 commit comments