From 4a370092677badd4ce063dc01a26294c723a8024 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1t=C3=A9=20Balajti?= <mate.balajti@unibas.ch> Date: Wed, 9 Aug 2023 14:13:07 +0200 Subject: [PATCH] fix: update cli.py and test_cli.py --- setup.py | 7 ++++--- tests/test_cli.py | 4 ++-- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 21a2fa2..3fe12de 100644 --- a/setup.py +++ b/setup.py @@ -1,18 +1,19 @@ """Set up project.""" -from setuptools import setup, find_packages from pathlib import Path +from setuptools import setup, find_packages project_root_dir = Path(__file__).parent.resolve() with open(project_root_dir / "requirements.txt", "r", encoding="utf-8") as f: INSTALL_REQUIRES = f.read().splitlines() -url = 'https://git.scicore.unibas.ch/zavolan_group/tools/terminal-fragment-selector' +URL = ('https://git.scicore.unibas.ch/zavolan_group/' + 'tools/terminal-fragment-selector') setup( name='terminal-fragment-selector', version='0.1.1', - url=url, + url=URL, license='MIT', author='Hugo Madge Leon, Sunho Kim, Tanya Nandan', author_email='hmadge@ethz.ch', diff --git a/tests/test_cli.py b/tests/test_cli.py index 4ffe56a..ca94612 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -27,5 +27,5 @@ def test_file(): def test_main(): """Test main() function.""" - with pytest.raises(TypeError): - main("") + with pytest.raises(SystemExit): + main() -- GitLab