Skip to content

Commit

Permalink
ci: fix pathes
Browse files Browse the repository at this point in the history
  • Loading branch information
jonas-eschle committed Nov 9, 2024
1 parent bb1ce4f commit 77fc4c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Install package
run: |
pip install uv
uv pip install --system .[test] pytest-xdist # for multiprocessing
uv pip install --system -e .[test] pytest-xdist # for multiprocessing, -e needed for pathes etc.
- name: Test package
run: python -m pytest --doctest-modules --cov=hepstats --cov-report=xml -n auto
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
- name: Install dependencies
run: |
pip install uv
uv pip install --system .[docs]
uv pip install --system -e .[docs]
- name: build docs
run: |
sphinx-build -b html docs docs/_build/html
Expand Down

0 comments on commit 77fc4c7

Please sign in to comment.