-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #172 from eastgenomics/release-2.7.1
Release_2.7.1 (#172) Co-Authored-By: Jethro Rainford <[email protected]> Co-Authored-By: mattgarner <[email protected]>
- Loading branch information
Showing
16 changed files
with
6,695 additions
and
280 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: pytest | ||
on: [push] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python 3.8 | ||
uses: actions/setup-python@v1 | ||
with: | ||
python-version: 3.8 | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install pipenv codecov | ||
pip install -r requirements.txt | ||
pipenv install --dev | ||
- name: Build bcftools | ||
run: | | ||
wget https://github.com/samtools/bcftools/releases/download/1.18/bcftools-1.18.tar.bz2 | ||
tar xf bcftools-1.18.tar.bz2 | ||
cd bcftools-1.18 | ||
./configure --prefix=/usr/local/ | ||
sudo make | ||
sudo make install | ||
- name: Build htslib | ||
run: | | ||
wget https://github.com/samtools/htslib/releases/download/1.18/htslib-1.18.tar.bz2 | ||
tar xf htslib-1.18.tar.bz2 | ||
cd htslib-1.18 | ||
./configure --prefix=/usr/local/ | ||
sudo make | ||
sudo make install | ||
- name: Test with pytest | ||
run: | | ||
pytest -vv --cov resources/home/dnanexus/generate_workbook/ |
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
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
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
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
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
Oops, something went wrong.