Skip to content

Commit

Permalink
Update dependencies (#677)
Browse files Browse the repository at this point in the history
  • Loading branch information
abey79 authored Jan 7, 2024
1 parent 5a7888b commit b8d8195
Show file tree
Hide file tree
Showing 5 changed files with 1,002 additions and 921 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/python-lint-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fail-fast: true
matrix:
python-version: [3.9, '3.10', '3.11']
os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-latest, macos-latest, windows-latest, self-hosted]
defaults:
run:
shell: bash
Expand Down Expand Up @@ -53,15 +53,15 @@ jobs:
- name: Pytest (code coverage)
run: |
poetry run pytest --cov=./ --cov-report=xml
if: matrix.os == 'macos-latest' && matrix.python-version == '3.11'
if: (matrix.os == 'macos-latest' || matrix.os == 'self-hosted') && matrix.python-version == '3.11'
- name: Pytest
run: |
poetry run pytest
if: matrix.os == 'macos-latest' && matrix.python-version != '3.11'
if: (matrix.os == 'macos-latest' || matrix.os == 'self-hosted') && matrix.python-version != '3.11'
- name: Pytest (no image similarity check)
run: |
poetry run pytest --skip-image-similarity
if: matrix.os != 'macos-latest'
if: matrix.os != 'macos-latest' && matrix.os != 'self-hosted'
- name: Upload comparison test results
if: failure()
uses: actions/upload-artifact@v3
Expand Down
2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# install a complete dev environment
install:
poetry install -E all --with docs
poetry install -E all --with docs,dev

# update Poetry's lockfile
update-deps:
Expand Down
Loading

0 comments on commit b8d8195

Please sign in to comment.