Skip to content

Update __init__.py

Update __init__.py #17

Workflow file for this run

name: Run Unit Tests
on: [push]
jobs:
build:
runs-on: ubuntu-20.04
container:
image: python:2.7.18-buster
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e . -r ./requirements/dev
- name: Launch tests
run: |
nosetests ./tests