We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 168af67 commit 182cd19Copy full SHA for 182cd19
.github/workflows/tests.yml
@@ -70,6 +70,13 @@ jobs:
70
python-version: ${{ matrix.python-version }}
71
- run: curl -LsSf https://astral.sh/uv/install.sh | sh
72
- run: uv pip install -r requirements-tests.txt --system
73
+ - name: Install required APT packages
74
+ run: |
75
+ DEPENDENCIES=$( python tests/get_external_apt_dependencies.py )
76
+ if [ -n "$DEPENDENCIES" ]; then
77
+ printf "Installing APT packages:\n $(echo $DEPENDENCIES | sed 's/ /\n /g')\n"
78
+ sudo apt-get install -qy $DEPENDENCIES
79
+ fi
80
- run: |
81
# python-version can sometimes be pinned to a specific version or to "-dev", but
82
# mypy understands only X.Y version numbers.
0 commit comments