Skip to content
Snippets Groups Projects
Commit c49a3115 authored by Hervé  MENAGER's avatar Hervé MENAGER
Browse files

cleanup tests to use pytest as described in flask docs

parent 5636c66e
No related branches found
No related tags found
No related merge requests found
include README.md
include setup.cfg
include jass/swagger/swagger.yaml
recursive-include jass/static *
recursive-include celery_files *
from jass.models.worktable import create_inittable_file
input_data_path = '/home/hmenager/jass/jass/test/data_test1/*chr*.txt'
init_covariance_path = '/home/hmenager/jass/jass/test/data_test1/COV.txt'
regions_map_path = '/home/hmenager/jass/jass/test/data_test1/regions.txt'
description_file_path = '/home/hmenager/jass/jass/test/data_test1/summary.csv'
init_table_path = '/tmp/test.h5'
create_inittable_file(input_data_path, init_covariance_path, regions_map_path, description_file_path, init_table_path)
[aliases]
test=pytest
......@@ -27,6 +27,12 @@ setup(
include_package_data=True,
long_description="""\
"""
""",
setup_requires=[
'pytest-runner',
],
tests_require=[
'pytest',
]
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment