Skip to content

Commit

Permalink
Run pytest only when changing some files
Browse files Browse the repository at this point in the history
  • Loading branch information
hussein-awala committed Jan 24, 2024
1 parent bc376a2 commit a316f7d
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 48 deletions.
61 changes: 61 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
name: test

on:
pull_request:
types:
- opened
- reopened
- synchronize
push:
branches:
- main

jobs:
changed-files:
runs-on: ubuntu-latest
steps:
- name: Should run pytest
uses: dorny/paths-filter@v2
with:
filters: |
src:
- "spark_on_k8s/**"
- "tests/**"
- "poetry.lock"
pytest:
needs: changed-files
if: ${{ needs.changed-files.outputs.src == "true" }}
strategy:
fail-fast: true
matrix:
os: [ "ubuntu-latest", "macos-latest" ]
python-version: [ "3.8", "3.9", "3.10", "3.11" ]
runs-on: ${{ matrix.os }}
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: 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 --all-extras
- name: Install library
run: poetry install --no-interaction --all-extras
- name: Run tests
run: |
source .venv/bin/activate
pytest tests/
48 changes: 0 additions & 48 deletions .github/workflows/tests.yml

This file was deleted.

0 comments on commit a316f7d

Please sign in to comment.