Skip to content

Commit

Permalink
fixing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
drmikecrowe committed Jan 19, 2025
1 parent b09f4ef commit 863d3a8
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,27 +13,27 @@ jobs:
- macos-latest
- windows-latest
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- '3.8'
- '3.9'
- '3.10'
- '3.11'
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry
- uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry xonsh

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
cache: poetry
cache-dependency-path: pyproject.toml
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
cache: poetry
cache-dependency-path: pyproject.toml

- uses: pre-commit/[email protected]
- name: Install dependencies
run: poetry install
- name: Run tests
run: |
xonsh -c "xontrib load 1password"
poetry run pytest
- uses: pre-commit/[email protected]
- name: Install dependencies
run: poetry install
- name: Run tests
run: |
xonsh -c "xontrib load 1password"
poetry run pytest

0 comments on commit 863d3a8

Please sign in to comment.