checkout version curl-7_67_0 of curl for the tests.

This commit is contained in:
Cédric Bonhomme 2020-01-06 18:10:30 +01:00
parent a4a17ba265
commit 1aec0290af
Signed by untrusted user who does not match committer: cedric
GPG key ID: A1CB94DE57B7A70D

19
tests/conftest.py Normal file
View 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