Skip to content

switching linkouts to new servers #163

switching linkouts to new servers

switching linkouts to new servers #163

name: workflow-unit-libraryconversion
on: [push]
jobs:
test-libraryconversion:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
with:
submodules: recursive
- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
python-version: 3.7
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with Pytest
run: |
pip install pytest
cd library_conversion/test && pytest -vv test.py && cd ../..