Skip to content

fix typing issue of extra items #71

fix typing issue of extra items

fix typing issue of extra items #71

Workflow file for this run

name: Test Python Package
on:
pull_request:
branches:
- main
- dev/v\d+\.\d+\.\d+
types: [opened, reopened, synchronize]
paths:
- 'seamless/**/*.py'
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r test-requirements.txt
- name: Run tests
working-directory: ${{ github.workspace }}
run: |
python -m unittest discover -s tests -p 'test_*.py' -t ${{ github.workspace }}