Added test to check installation
All checks were successful
ydeng/filterfasta/pipeline/head This commit looks good

This commit is contained in:
Harrison Deng 2023-04-22 16:33:07 -05:00
parent 6e6d7a6c43
commit a6871214a4
4 changed files with 3 additions and 2 deletions

2
.vscode/launch.json vendored
View File

@ -8,7 +8,7 @@
"name": "Run Fasta Filter",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/filterfasta/filterfasta.py",
"module": "filterfasta.cli",
"args": [
"reference_standards.fas",
"reference_standards_filtered.fas",

1
Jenkinsfile vendored
View File

@ -20,6 +20,7 @@ pipeline {
stage("test") {
steps {
sh "pip install dist/*.whl"
sh "filterfasta -h"
}
}
stage("publish") {

View File

@ -7,4 +7,4 @@ packages = filterfasta
[options.entry_points]
console_scripts =
filterfasta = filterfasta.filterfasta:main
filterfasta = filterfasta.cli:main