Skip to content

Update installation steps in docs #16

Update installation steps in docs

Update installation steps in docs #16

Workflow file for this run

name: Run tests
on:
push:
branches: ["nikkums/development"] # for now
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10' # bytechomp is unhappy with 3.12
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .
- name: Test with pytest
run: |
pip install pytest pytest-cov
pytest --doctest-modules --junitxml=junit/test-results.xml --cov=com --cov-report=xml --cov-report=html