Skip to content

fix: add 'preferences' and 'persistent' options to UFTP.authenticate(… #122

fix: add 'preferences' and 'persistent' options to UFTP.authenticate(…

fix: add 'preferences' and 'persistent' options to UFTP.authenticate(… #122

Workflow file for this run

# This workflow runs unit tests
name: Unit tests
on:
workflow_dispatch:
push:
pull_request:
jobs:
unit-test:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ["3.7", "3.x"]
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel
pip install .
pip install -r requirements-dev.txt
- name: Run tests
run: |
make test