mirror of
https://github.com/cve-search/git-vuln-finder.git
synced 2024-11-22 06:47:20 +00:00
checkout version curl-7_67_0 of curl for the tests.
This commit is contained in:
parent
a4a17ba265
commit
1aec0290af
1 changed files with 19 additions and 0 deletions
19
tests/conftest.py
Normal file
19
tests/conftest.py
Normal file
|
@ -0,0 +1,19 @@
|
|||
|
||||
import os
|
||||
import pytest
|
||||
|
||||
from git import Repo
|
||||
|
||||
|
||||
@pytest.fixture(scope='session')
|
||||
def clone_curl():
|
||||
"""Clone the repository of curl for the tests."""
|
||||
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.checkout('curl-7_67_0')
|
||||
|
||||
def teardown():
|
||||
os.unlink(repo_dir)
|
||||
|
||||
return repo_dir
|
Loading…
Reference in a new issue