Skip to content

Commit

Permalink
attempting to use better caching for poetry in ci w/ burnettk
Browse files Browse the repository at this point in the history
  • Loading branch information
jasquat committed Oct 11, 2023
1 parent d130b37 commit 286fbb4
Show file tree
Hide file tree
Showing 2 changed files with 78 additions and 22 deletions.
98 changes: 77 additions & 21 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,38 +2,94 @@ name: Tests

on: [push]

jobs:
build:
# jobs:
# build:
#
# runs-on: ubuntu-latest
# strategy:
# matrix:
# python-version: ["3.10", "3.11"]
# steps:
# - uses: actions/checkout@v3
# - name: Set up Python ${{ matrix.python-version }}
# uses: actions/setup-python@v4
# with:
# python-version: ${{ matrix.python-version }}
# - name: cache poetry install
# uses: actions/cache@v2
# with:
# path: ~/.local
# key: poetry-1.6.1
# - uses: snok/install-poetry@v1
# with:
# version: 1.6.1
# virtualenvs-create: true
# virtualenvs-in-project: true
# installer-parallel: true
# - name: cache deps
# id: cache-deps
# uses: actions/cache@v2
# with:
# path: .venv
# key: pydeps-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }}
# - run: poetry install --no-interaction --no-root
# if: steps.cache-deps.outputs.cache-hit != 'true'
# - run: poetry install --no-interaction
# - run: poetry run mypy .
# - run: poetry run ruff .
# - run: poetry run pytest
#
# name: test
#
# on: pull_request

jobs:
linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip
restore-keys: ${{ runner.os }}-pip
- run: python -m pip install ruff
- run: |
ruff .
test:
needs: linting
strategy:
fail-fast: true
matrix:
python-version: ["3.10", "3.11"]
python-version: [ "3.10", "3.11" ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
- name: Check out repository
uses: actions/checkout@v3
- name: Set up python ${{ matrix.python-version }}
id: setup-python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: cache poetry install
uses: actions/cache@v2
with:
path: ~/.local
key: poetry-1.6.1
- uses: snok/install-poetry@v1
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: 1.6.1
virtualenvs-create: true
virtualenvs-in-project: true
- name: cache deps
id: cache-deps
uses: actions/cache@v2
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v3
with:
path: .venv
key: pydeps-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }}
- run: poetry install --no-interaction --no-root
if: steps.cache-deps.outputs.cache-hit != 'true'
- run: poetry install --no-interaction
- run: poetry run mypy .
- run: poetry run ruff .
- run: poetry run pytest
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 library
run: poetry install --no-interaction
- name: Run tests
run: |
source .venv/bin/activate
pytest tests/
2 changes: 1 addition & 1 deletion tests/spiffworkflow_proxy/integration/blueprint_test.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import json

from flask import Flask
from flask import FlaskClient
from flask.testing import FlaskClient
from spiffworkflow_proxy.blueprint import proxy_blueprint


Expand Down

0 comments on commit 286fbb4

Please sign in to comment.