lix/tests/functional2/conftest.py
jade 3caf3e1e08 testsuite: add a functional2 test suite based on pytest
I am tired of bad shell scripts, let me write bad python quickly
instead. It's definitely, $100%, better.

This is not planned as an immediate replacement of the old test suite,
but we::jade would not oppose tests getting ported.

What is here is a mere starting point and there is a lot more
functionality that we need.

Fixes: #488

Change-Id: If762efce69030bb667491b263b874c36024bf7b6
2024-10-09 14:47:39 -07:00

9 lines
146 B
Python

import pytest
from pathlib import Path
from .testlib import fixtures
@pytest.fixture
def nix(tmp_path: Path):
return fixtures.Nix(tmp_path)