Skip to content

Commit

Permalink
pinning pip version to address breaking change in test runner
Browse files Browse the repository at this point in the history
  • Loading branch information
noazark committed Oct 11, 2024
1 parent bac59ea commit 9111314
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pip==24.0
pip install flake8
- name: Lint with flake8
# TODO: fix linting issues and remove --exit-zero flag
Expand All @@ -29,11 +29,11 @@ jobs:
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Install requirements
run: |
pip install -r requirements.txt
pip install -r requirements.txt
- name: Install package
# TODO: update to latest packaging conventions
# TODO: update to latest packaging conventions
run: |
pip install -e .
- name: Run tests
run: |
python manage.py test --settings=segments.tests.settings
python manage.py test --settings=segments.tests.settings

0 comments on commit 9111314

Please sign in to comment.