Skip to content

Commit

Permalink
add parsers
Browse files Browse the repository at this point in the history
  • Loading branch information
Koeng101 committed Aug 17, 2024
1 parent 7b89661 commit 78a3f07
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
python -m venv test_env
source test_env/bin/activate
pip install ./py/dist/*.whl
python -c "from dnadesign import fasta_parser; print('Library loaded successfully')"
python -c "from dnadesign import parsers; print('Library loaded successfully')"
pip install pytest
pytest ./py/tests -v --capture=no
continue-on-error: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
python -m venv test_env
source test_env/bin/activate
pip install ./py/dist/*.whl
python -c "from dnadesign import parser; print('Library loaded successfully')"
python -c "from dnadesign import parsers; print('Library loaded successfully')"
pip install pdoc
pdoc --html --output-dir docs ./py/dnadesign
Expand Down

0 comments on commit 78a3f07

Please sign in to comment.