From d2b88a3e6cb714774700f59eb10a627eb60ea519 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Bonhomme?= Date: Mon, 6 Jan 2020 18:16:47 +0100 Subject: [PATCH] updated README. --- README.md | 4 ++-- tests/conftest.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 59dd589..f17f628 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ added automatically in the output. # Installation -## Use in your Python software +## Use it as a library ~~~bash $ poetry install git-vuln-finder @@ -33,7 +33,7 @@ Type "help", "copyright", "credits" or "license" for more information. ~~~ -## Use as a command line tool +## Use it as a command line tool ~~~bash $ pipx install git-vuln-finder diff --git a/tests/conftest.py b/tests/conftest.py index 2b6f692..e37d33b 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -11,7 +11,7 @@ def clone_curl(): git_url = 'https://github.com/curl/curl.git' repo_dir = './test_repos/curl' repo = Repo.clone_from(url=git_url, to_path=repo_dir) - repo.heads['curl-7_67_0'].checkout() + #repo.heads['curl-7_67_0'].checkout() def teardown(): os.unlink(repo_dir)