Skip to content

chore: Fix open file errors in tests #360

chore: Fix open file errors in tests

chore: Fix open file errors in tests #360

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
# libcove doesn't support Windows.
# https://github.com/OpenDataServices/lib-cove/issues/53
# We also only use Linux servers, so don't test on Mac
os: [ubuntu-22.04]
python-version: [ 3.8, 3.9, "3.10", "3.11" ]
jsonref-version: ["==0.3", ">1"]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
pip install -r requirements_dev.txt
pip install .
pip install 'jsonref${{ matrix.jsonref-version }}'
- name: Test
run: py.test tests/