From be8b73c993c804e6098304f882ef36ab4a279bd7 Mon Sep 17 00:00:00 2001 From: Andi Gerken <andi.gerken@gmail.com> Date: Wed, 24 Feb 2021 15:31:52 +0100 Subject: [PATCH] [ci] Removed unneccessary package from setup, test for coverage --- .gitlab-ci.yml | 2 +- ci/test.py | 4 ++-- setup.py | 9 +-------- 3 files changed, 4 insertions(+), 11 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e9fe349..e6328c6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -24,7 +24,7 @@ stages: artifacts: paths: - report.xml - - htmlcov + - .coverage expire_in: 1 day script: - ./ci/test.py diff --git a/ci/test.py b/ci/test.py index 832897c..b368ff9 100755 --- a/ci/test.py +++ b/ci/test.py @@ -53,7 +53,7 @@ if __name__ == "__main__": "-m", "pytest", "--junitxml=report.xml", - # "--cov=src", - # "--cov-report=html", + "--cov=src", + "--cov-report=", ] ) diff --git a/setup.py b/setup.py index 7999f5a..3a6dad4 100644 --- a/setup.py +++ b/setup.py @@ -48,14 +48,7 @@ setup( version=source_version(), author="", author_email="", - install_requires=[ - "h5py>=3", - "numpy", - "seaborn", - "pandas", - "deprecation", - "testbook", - ], + install_requires=["h5py>=3", "numpy", "seaborn", "pandas", "deprecation"], classifiers=[ "Development Status :: 3 - Alpha", "Intended Audience :: Science/Research", -- GitLab