Skip to content

Commit

Permalink
fix: github actions: python tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Roger committed Feb 17, 2024
1 parent cba6476 commit fe46487
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,13 @@ jobs:
pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
# temporary only until distutils provided in Python 3.12
- name: Install setuptools for Python3.12
with:
python-version: 3.12
run: |
pip install setuptools
- name: Install python project
run: |
python -m pip install .
Expand Down

0 comments on commit fe46487

Please sign in to comment.