Skip to content

Commit 8af4495

Browse files
authored
Merge pull request #2751 from RossBrunton/ross/requirements
For CodeQL job, install testing requirements
2 parents f15070e + 81f14ba commit 8af4495

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/codeql.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ jobs:
2929
languages: cpp, python
3030

3131
- name: Install pip packages
32-
run: pip install -r third_party/requirements.txt
32+
run: |
33+
pip install -r third_party/requirements.txt
34+
pip install -r third_party/requirements_testing.txt
3335
3436
- name: Install apt packages
3537
run: |
@@ -64,7 +66,9 @@ jobs:
6466
languages: cpp, python
6567

6668
- name: Install pip packages
67-
run: python3 -m pip install -r third_party/requirements.txt
69+
run: |
70+
python3 -m pip install -r third_party/requirements.txt
71+
python3 -m pip install -r third_party/requirements_testing.txt
6872
6973
- name: Install hwloc
7074
run: vcpkg install hwloc:x64-windows

0 commit comments

Comments
 (0)