Files
foundry/tests/conftest.py
Rohith Krishna db7cbf37d1 fix: fix path in paths for pdb parsing (#715)
* refactor: change modelhub to foundry

* fix: fix path in paths for pdb parsing

* Update run_inf_tutorial.sh

---------

Co-authored-by: Rohith Krishna <rohith@localhost>
Co-authored-by: Raktim Mitra <timkartar7879@gmail.com>
2025-12-02 17:55:02 -08:00

11 lines
299 B
Python

"""Test fixtures and utilities for foundry tests."""
from foundry.testing import configure_pytest, get_test_data_dir, gpu # noqa: F401
TEST_DATA_DIR = get_test_data_dir(__file__)
def pytest_configure(config):
"""Configure pytest for foundry tests."""
configure_pytest(config, __file__)