Skip to content

Commit

Permalink
remove problematic path contexts (#866)
Browse files Browse the repository at this point in the history
* remove problematic path contexts

* update black dependencies

* update test action
  • Loading branch information
oscarlevin authored Nov 22, 2024
1 parent 47646f4 commit 6b89ced
Show file tree
Hide file tree
Showing 5 changed files with 228 additions and 446 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,17 +35,17 @@ jobs:
fail-fast: true
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
poetry-version: ["1.5.1"]
poetry-version: ["1.8.4"]
os: [ubuntu-latest, windows-latest]
exclude:
- os: windows-latest
python-version: "3.8"
- os: windows-latest
python-version: "3.9"
- os: windows-latest
python-version: "3.10"
- os: windows-latest
python-version: "3.11"
- os: windows-latest
python-version: "3.12"

runs-on: ${{ matrix.os }}

Expand Down Expand Up @@ -79,6 +79,12 @@ jobs:
python -m poetry install --all-extras
python -m poetry run python scripts/fetch_core.py
- name: Ensure dependencies are present
run: |
echo "manually installing pelican; poetry does not seem to do this correctly."
python -m poetry run pip install pelican
python -m poetry run pelican --version
- name: Test with pytest
run: |
python -m poetry run pytest -v --cov
Expand Down
Loading

0 comments on commit 6b89ced

Please sign in to comment.