We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f60a18 commit c92304cCopy full SHA for c92304c
.github/workflows/ci.yml
@@ -53,7 +53,9 @@ jobs:
53
python-version: "${{ matrix.python-version }}"
54
- if: matrix.config == 'valgrind' || matrix.config == 'pytest-benchmark'
55
name: Install valgrind
56
- run: sudo apt-get install valgrind -y
+ run: |
57
+ sudo apt-get update
58
+ sudo apt-get install valgrind -y
59
- name: Install dependencies with pytest${{ matrix.pytest-version }}
60
run: |
61
if [ "${{ matrix.config }}" == "valgrind" ]; then
.github/workflows/codspeed.yml
@@ -30,6 +30,7 @@ jobs:
30
python-version: ${{ env.PYTHON_VERSION }}
31
- name: Install local version of pytest-codspeed
32
33
34
sudo apt-get install valgrind -y
35
pip install .
36
sudo apt-get remove valgrind -y
0 commit comments