Skip to content

Skip file permission tests if windows #4

Skip file permission tests if windows

Skip file permission tests if windows #4

Workflow file for this run

name: Tests
on: [push]
jobs:
test:
name: Test ${{ matrix.python }} - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-latest
python:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "pypy3.9"
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install
run: |
pip install coverage
pip install -e .
- name: Run tests
run: |
python --version
python -m node.ext.directory.tests
- name: Run coverage
run: |
coverage run --source=src/node/ext/directory -m node.ext.directory.tests
coverage report --fail-under=100