Skip to content

build: minor rev to pytest to try to fix PYTHONPATH #10

build: minor rev to pytest to try to fix PYTHONPATH

build: minor rev to pytest to try to fix PYTHONPATH #10

Workflow file for this run

name: Run pytest
on:
push:
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.9'
- name: Install dependencies
run: pip install -r requirements.txt
- name: Set PYTHONPATH to subdirectory sdcat
run: echo "PYTHONPATH=sdcat" >> $GITHUB_ENV
- name: Run pytest
run: pytest