Skip to content

get a dict of files from path.walk #10

get a dict of files from path.walk

get a dict of files from path.walk #10

Workflow file for this run

on: [push]
jobs:
test:
strategy:
matrix:
python-version: ["3.10", "3.x"]
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
# - name: pytest, Doctest & Coverage
# run: |
# pip install pytest pytest-cov
# pytest --doctest-modules --junitxml=junit/test-results.xml --cov=com --cov-report=xml --cov-report=html
- name: pytest
run: |
pip install -r test/requirements.txt
pytest