Skip to content
Commits on Source (3)
snakemake (5.6.0-2) unstable; urgency=medium
* Team upload.
* debian/tests: Add missing dependency on python3-pandas; set $HOME
* Enable parallel testing everywhere
-- Michael R. Crusoe <michael.crusoe@gmail.com> Sun, 15 Sep 2019 13:33:57 +0200
snakemake (5.6.0-1) unstable; urgency=medium
* Team upload.
......
......@@ -23,6 +23,7 @@ Build-Depends: debhelper-compat (= 12),
python3-psutil,
python3-pygraphviz,
python3-pytest,
python3-pytest-xdist,
python3-pytools,
python3-ratelimiter,
python3-recommonmark,
......
......@@ -7,7 +7,7 @@ export HOME=$(CURDIR)/fakehome
export PYBUILD_NAME=snakemake
export PYBUILD_DESTDIR_python3=debian/snakemake
export PYBUILD_BEFORE_TEST_python3=chmod +x {dir}/bin/snakemake; cp -r {dir}/bin {dir}/tests {build_dir}
export PYBUILD_TEST_ARGS=python{version} -m pytest tests/test*.py -v -k 'not report and not ancient and not test_script and not default_remote and not issue635 and not convert_to_cwl and not issue1083 and not issue1092 and not issue1093 and not test_remote and not test_default_resources'
export PYBUILD_TEST_ARGS=python{version} -m pytest tests/test*.py -n auto -k 'not report and not ancient and not test_script and not default_remote and not issue635 and not convert_to_cwl and not issue1083 and not issue1092 and not issue1093 and not test_remote and not test_default_resources'
# test_report
# test_ancient
......
Tests: run-unit-test
Depends: @
Depends: @, python3-pandas, python3-pytest-xdist
Restrictions: allow-stderr
......@@ -15,5 +15,7 @@ fi
cd "${AUTOPKGTEST_TMP}"
python3 -m pytest ${ROOT}/tests/test*.py -v -k 'not report and not ancient and not test_script and not default_remote and not issue635 and not convert_to_cwl and not issue1083 and not issue1092 and not issue1093 and not test_remote and not test_default_resources and not test_singularity and not test_singularity_conda and not test_cwl_singularity and not test_cwl'
export HOME="${AUTOPKGTEST_TMP}"
python3 -m pytest ${ROOT}/tests/test*.py -n auto -k 'not report and not ancient and not test_script and not default_remote and not issue635 and not convert_to_cwl and not issue1083 and not issue1092 and not issue1093 and not test_remote and not test_default_resources and not test_singularity and not test_singularity_conda and not test_cwl_singularity and not test_cwl'