Skip to content

Allow pytest to see ds module #4

Allow pytest to see ds module

Allow pytest to see ds module #4

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.x'
- run: python -m pip install -U pytest
- run: pytest -q
env:
PYTHONPATH: ${{ github.workspace }}