Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GitHub actions integration tests #48

Merged
merged 37 commits into from
Mar 15, 2024
Merged
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
2660c6c
GitHub actions clean (#40)
Snicker7 Feb 22, 2024
f0b9055
Create integration_tests.yml
Snicker7 Feb 22, 2024
41332d6
Simplify name
Snicker7 Feb 22, 2024
6475524
CRISPRESSO2_DIR environment variable
Snicker7 Feb 22, 2024
447e03d
Up one dir
Snicker7 Feb 22, 2024
cb5f3ef
ls workspace
Snicker7 Feb 22, 2024
03b46f4
Install CRISPResso and ydiff
Snicker7 Feb 22, 2024
48790f4
Clone repo instead of checkout
Snicker7 Feb 22, 2024
400e399
submodule
Snicker7 Feb 22, 2024
4989a7c
ls
Snicker7 Feb 22, 2024
10a7eb9
CRISPResso2_copy
Snicker7 Feb 22, 2024
5700b5b
ls
Snicker7 Feb 22, 2024
4cc8015
Update env
Snicker7 Feb 22, 2024
6195c9d
Simplify
Snicker7 Feb 22, 2024
81e7b76
Pull from githubactions branch
Snicker7 Feb 29, 2024
5bcd650
Pull githubactions repo
Snicker7 Feb 29, 2024
ad9f638
Checkout githubactions
Snicker7 Feb 29, 2024
8b6d273
Mckay/pd warnings (#45)
mbowcut2 Mar 11, 2024
4af9dee
Run tests individually
Snicker7 Mar 13, 2024
ee55e3c
Pin plotly version
Snicker7 Mar 13, 2024
7077935
Run all tests even if one fails
Snicker7 Mar 13, 2024
bff0ca3
Test on another branch
Snicker7 Mar 14, 2024
c85d7e9
Switch branch with token
Snicker7 Mar 14, 2024
c814f59
Update integration_tests.yml
Snicker7 Mar 14, 2024
66c78e7
Introduce pandas sorting in CRISPRessoCompare (#47)
Snicker7 Mar 14, 2024
ad61900
Merge with master
Snicker7 Mar 14, 2024
edef850
New makefile commands
Snicker7 Mar 14, 2024
dfac9ad
Fix interleaved fastq input in CRISPRessoPooled and suppress CRISPRes…
Colelyman Mar 14, 2024
de1b9e8
Bug Fix - 367 (#35)
mbowcut2 Mar 14, 2024
5707413
On push no branches
Snicker7 Mar 15, 2024
dce762d
On push no branches
Snicker7 Mar 15, 2024
852a7e0
All in one file
Snicker7 Mar 15, 2024
654b16b
Fix yml errors
Snicker7 Mar 15, 2024
ba31cc4
Rename jobs
Snicker7 Mar 15, 2024
aa3d476
Remove old workflow files
Snicker7 Mar 15, 2024
b5040c6
Remove paths
Snicker7 Mar 15, 2024
e6e5a48
Run jobs in parallel
Snicker7 Mar 15, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Install CRISPResso and ydiff
  • Loading branch information
Snicker7 committed Feb 22, 2024
commit 03b46f49ba9557320efdc586a7d3c881193fc1cf
10 changes: 5 additions & 5 deletions .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@ jobs:
sudo apt-get update
sudo apt-get install -y gcc g++ bowtie2 samtools libsys-hostname-long-perl

- name: Install CRISPResso2
run: |
pip install ydiff
pip install -e .

- name: Copy C2_tests repo
uses: actions/checkout@master
with:
Expand All @@ -45,9 +50,4 @@ jobs:

- name: Run Integration Tests
run: |
pwd
ls
cd $GITHUB_WORKSPACE
pwd
ls
make test
Loading