diff --git a/Jenkinsfile b/Jenkinsfile index ab01100..51d99dc 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -20,6 +20,12 @@ pipeline { stage("test") { steps { sh "pip install dist/*.whl" + sh "filterfasta -h" + } + } + stage("archive") { + steps { + archiveArtifacts artifacts: 'dist/*.tar.gz, dist/*.whl' } } stage("publish") { diff --git a/filterfasta/filterfasta.py b/filterfasta/cli.py similarity index 100% rename from filterfasta/filterfasta.py rename to filterfasta/cli.py diff --git a/setup.cfg b/setup.cfg index fac52d5..e9feeec 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,10 +1,10 @@ [metadata] name = filterfasta -version = 0.0.1 +version = 0.0.2 [options] packages = filterfasta [options.entry_points] console_scripts = - filterfasta = filterfasta.filterfasta:main \ No newline at end of file + filterfasta = filterfasta.cli:main \ No newline at end of file