Skip to content

Commit

Permalink
Remove other warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
mgeier committed May 4, 2024
1 parent 290fe2f commit c1c32df
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ jobs:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
# TODO: remove this once the warning is fixed in Python 3.13-dev:
env:
PYTHONWARNINGS: error,default::DeprecationWarning
with:
Expand All @@ -24,15 +25,13 @@ jobs:
- name: Checkout submodules
run: |
python tests/update_submodules.py
- name: Install Python package
env:
PYTHONWARNINGS: error,default::DeprecationWarning
- name: Upgrade pip
run: |
python -m pip install pip --upgrade
- name: Install Python package
run: |
python -m pip install .
- name: Install test dependencies
env:
PYTHONWARNINGS: error,default::DeprecationWarning
run: |
python -m pip install -r tests/requirements.txt
- name: Run pytest
Expand Down

0 comments on commit c1c32df

Please sign in to comment.