We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 187a49c commit 4c7ffefCopy full SHA for 4c7ffef
1 file changed
.github/workflows/_system_test.yml
@@ -19,8 +19,8 @@ jobs:
19
# Check out example services
20
submodules: true
21
22
- - name: Install python packages
23
- uses: ./.github/actions/install_requirements
+ - name: Install uv
+ uses: astral-sh/setup-uv@v7
24
25
- name: Compose services
26
uses: hoverkraft-tech/compose-action@3846bcd61da338e9eaaf83e7ed0234a12b099b72 # v2.4.1
@@ -31,7 +31,7 @@ jobs:
31
env:
32
EPICS_CA_NAME_SERVERS: 127.0.0.1:9064
33
EPICS_PVA_NAME_SERVERS: 127.0.0.1:9075
34
- run: blueapi -c ${{ github.workspace }}/tests/system_tests/config.yaml serve &
+ run: uv run blueapi -c ${{ github.workspace }}/tests/system_tests/config.yaml serve &
35
36
- name: Run tests
37
- run: tox -e system-test
+ run: uv run --locked tox -e system-test
0 commit comments