Skip to content

bug fix for plotter #968

bug fix for plotter

bug fix for plotter #968

name: workflow-unit-molnet
on: [push]
jobs:
test-molnet:
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 nose2
run: |
pip install nose2
cd molnetenhancer/test && nose2 -v && cd ../..