Skip to content

Commit

Permalink
use pip instead of make in static-checks CI
Browse files Browse the repository at this point in the history
This commit will change the way how the test requirements are installed
in CI during static-checks.

Signed-off-by: Jan Richter <jarichte@redhat.com>
  • Loading branch information
richtja committed Dec 1, 2023
1 parent 3754351 commit 7ffa082
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ jobs:
- name: Allow git to operate on directory checked out by GH Actions
run: git config --global --add safe.directory `pwd`
- name: Installing Avocado development dependencies
run: make requirements-dev
run: python3 -m pip install --user -r requirements-dev.txt
continue-on-error: true
- name: Installing Avocado in develop mode
run: python3 setup.py develop --user
- name: Run static checks
Expand Down

0 comments on commit 7ffa082

Please sign in to comment.