Skip to content

Fixes bugs in last_moves_dist and relaxed_adjacency_dist #207

Fixes bugs in last_moves_dist and relaxed_adjacency_dist

Fixes bugs in last_moves_dist and relaxed_adjacency_dist #207

Workflow file for this run

name: tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- name: Checkout repo
uses: actions/checkout@v3
- 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 flake8 pytest
if [ -f requirements/build.txt ]; then pip install -r requirements/build.txt; fi
- name: Test with pytest
run: |
pytest -m "not slow or slow"