Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
prihoda committed Sep 20, 2021
1 parent 6b908e6 commit 03bdece
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ jobs:
# $CONDA is an environment variable pointing to the root of the miniconda directory
echo $CONDA/bin >> $GITHUB_PATH
- name: Install dependencies
run: |
make env
run: make env
- name: Download deepbgc files
run: make download
- name: Test with pytest
run: |
make test
run: make test
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ env:
conda create -n $(ENV_NAME) -c bioconda python=3.7 hmmer prodigal
$(CONDA_ACTIVATE); pip install numpy; pip install . pytest pytest-mock hmmlearn

download:
$(CONDA_ACTIVATE); deepbgc download

bioconda-install:
ifndef VERSION
$(error "Usage: make conda-env VERSION=0.1.9")
Expand Down

0 comments on commit 03bdece

Please sign in to comment.