Skip to content

Commit

Permalink
pip installing package in CI (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
vineetbansal authored Aug 9, 2024
1 parent ed59977 commit 9bdebd2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,8 @@ jobs:
activate-environment: paste
environment-file: environment.yml

- name: Install package
run: pip install .

- name: Pytest
run: pytest
2 changes: 1 addition & 1 deletion tests/test_paste.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import pandas as pd
import tempfile

from src.paste import pairwise_align, center_align, center_ot, intersect, center_NMF
from paste import pairwise_align, center_align, center_ot, intersect, center_NMF

test_dir = Path(__file__).parent
input_dir = test_dir / "data/input"
Expand Down

0 comments on commit 9bdebd2

Please sign in to comment.