mirror of
https://github.com/RosettaCommons/foundry.git
synced 2026-06-04 13:24:22 +08:00
* 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>
11 lines
299 B
Python
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__)
|