Skip to content

Inline some test note paths #733

Inline some test note paths

Inline some test note paths #733

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get install tidy
- if: matrix.os == 'windows-latest'
run: |
choco install html-tidy
git config --global core.symlinks false
- name: Configure git
run: |
git config --global user.email "ki@example.com"
git config --global user.name "Ki GithubActions"
git --version
- name: Install ki
run: |
pip install pytest wheel
pip install .
- name: Test package
run: |
pytest -vv tests/test_package.py
- name: Install test dependencies
run: |
pip install -r dev-requirements.txt
- name: Unit tests
run: |
pytest -vv --timeout=120 tests/test_ki.py tests/test_parser.py
- name: Integration tests
run: |
pytest -vv --timeout=120 tests/test_integration.py