Skip to content

small bug fix

small bug fix #146

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: tests
on:
push:
branches: [ "main" ]
paths:
- src/moldrug/**
- .github/workflows/tests.yml
- tests/**
- pyproject.toml
- setup.cfg
- setup.py
pull_request:
branches: [ "main" ]
paths:
- moldrug/**
- .github/workflows/tests.yml
- tests/**
- pyproject.toml
- setup.cfg
- setup.py
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macOS-latest] #windows-latest (vina is not available for windows in conda-forge),m think about use bioconda autodock-vina
python-version: [3.8, 3.9, '3.10', 3.11]
steps:
# - uses: actions/checkout@v3
# - name: Setup conda
# uses: s-weigand/setup-conda@v1
# with:
# update-conda: true
# python-version: ${{ matrix.python-version }}
# conda-channels: anaconda, conda-forge
# - name: Install dependencies from conda
# run: |
# conda install -y -c conda-forge vina
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Get AutoDock-Vina
run: |
python tests/get_vina.py
- name: Install pip dependencies and moldrug on test mode
run: |
python -m pip install --upgrade pip
python -m pip install flake8
python -m pip install -e .[test]
python -m pip install pytest-cov
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 src/moldrug --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 src/moldrug --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
echo after "Lint with flake8" My python version is actually: $(python --version).
- name: Test with pytest
run: |
pytest --cov moldrug
- name: Upload coverage reports to Codecov with GitHub Action
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.9'
uses: codecov/codecov-action@v3