Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Koeng101 committed Oct 4, 2024
1 parent 9f69b0b commit 0b725d7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ jobs:
- name: Test wheel in fresh environment
#GitHub Actions runners are typically x86_64, even when you're building for ARM64
if: (runner.os == 'Linux' && matrix.arch == 'amd64') || (runner.os == 'macOS' && matrix.arch == runner.arch)
#Right now, macOS arm64 gives segmentation fault, for whatever reason.
if: (runner.os == 'Linux' && matrix.arch == 'amd64') #|| (runner.os == 'macOS' && matrix.arch == runner.arch)
run: |
python -m venv test_env
source test_env/bin/activate
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
- Adds feature for adding flanks to RecursiveFragment. [#100](https://github.com/Koeng101/dnadesign/pull/100)
- Adds cloning and recursion functions to python. [#96](https://github.com/Koeng101/dnadesign/pull/96)
- Adds recursive fragmentation. [#92](https://github.com/Koeng101/dnadesign/pull/92)
- Updated megamash documentation to be more specific. [#91](https://github.com/Koeng101/dnadesign/pull/91)
Expand Down

0 comments on commit 0b725d7

Please sign in to comment.