Fix issue when there is one sample in last batch #418
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: semibin_test | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
python-version: | |
- "3.7" | |
- "3.8" | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- uses: conda-incubator/setup-miniconda@v2 | |
with: | |
activate-environment: test | |
python-version: ${{ matrix.python-version }} | |
auto-activate-base: false | |
- name: Install dependencies | |
shell: bash -l {0} | |
run : | | |
pip install pandas | |
pip install numpy | |
pip install . | |
pip install pytest | |
pip install hypothesis | |
pip install python-igraph | |
pip install torch | |
pip install scikit-learn | |
pip install requests | |
pip install numexpr | |
conda install -c bioconda bedtools hmmer fraggenescan samtools==1.6 | |
conda install -c bioconda prodigal | |
conda install -c conda-forge -c bioconda mmseqs2=13.45111 | |
python ./setup.py install | |
- name: Test with pytest | |
shell: bash -l {0} | |
run: | | |
python -m pytest ./test | |
- name: Test with SemiBin command | |
shell: bash -l {0} | |
run: | | |
for t in integration-tests/*.py; do | |
echo "Running $t ..." | |
python $t | |
done | |