Skip to content

Commit

Permalink
remove windows
Browse files Browse the repository at this point in the history
  • Loading branch information
India Kerle committed May 8, 2024
1 parent d770827 commit 4948f10
Showing 1 changed file with 47 additions and 42 deletions.
89 changes: 47 additions & 42 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,46 +8,51 @@ jobs:

strategy:
matrix:
#os: ["ubuntu-latest", "macos-latest", "windows-latest"]
os: ["windows-latest"]
#python-version: ["3.9", "3.10"]
os: ["ubuntu-latest", "macos-latest"]
python-version: ["3.9", "3.10"]
steps:
- name: Check out repository
uses: actions/checkout@v4

- name: Set up python ${{ matrix.python-version }}
id: setup-python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true

- name: Add Poetry to PATH
run: |
$env:PATH += ";$env:USERPROFILE\.poetry\bin"
echo "Poetry path added to system PATH"
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v3
with:
path: .venv
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}

- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root

- name: Install additional dependencies
run: |
poetry install --no-interaction
poetry run python -m spacy download en_core_web_sm
- name: Run tests
run: poetry run pytest tests/ --verbose
steps:
#----------------------------------------------
# check-out repo and set-up python
#----------------------------------------------
- name: Check out repository
uses: actions/checkout@v4
- name: Set up python ${{ matrix.python-version }}
id: setup-python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
#----------------------------------------------
# ----- install & configure poetry -----
#----------------------------------------------
- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
#----------------------------------------------
# load cached venv if cache exists
#----------------------------------------------
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v3
with:
path: .venv
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
#----------------------------------------------
# install dependencies if cache does not exist
#----------------------------------------------
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root
#----------------------------------------------
# install your root project, if required
#----------------------------------------------
- name: Install additional dependencies
run: |
poetry install --no-interaction
poetry run python -m spacy download en_core_web_sm
#----------------------------------------------
# add matrix specifics and run test suite
#----------------------------------------------
- name: Run tests
run: poetry run pytest tests/ --verbose

0 comments on commit 4948f10

Please sign in to comment.