Skip to content

Commit

Permalink
fix: remove power from tests installation as a quickfix
Browse files Browse the repository at this point in the history
  • Loading branch information
tobi-wan-kenobi committed Oct 26, 2023
1 parent c14ed11 commit bfafd93
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/autotest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -U coverage pytest pytest-mock freezegun
pip install 'pygit2<1' 'libvirt-python<6.3' 'feedparser<6' 'power<1.4' || true
pip install $(cat requirements/modules/*.txt | cut -d ' ' -f 1 | sort -u)
pip install 'pygit2<1' 'libvirt-python<6.3' 'feedparser<6' || true
pip install $(cat requirements/modules/*.txt | grep -v power | cut -d ' ' -f 1 | sort -u)
- name: Install Code Climate dependency
run: |
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
Expand Down

0 comments on commit bfafd93

Please sign in to comment.