Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
RoyAalekh
/
hackathon_code4change
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
c7ed2a6
hackathon_code4change
/
conftest.py
RoyAalekh
Submission ready
eadbc29
5 months ago
raw
Copy download link
history
blame
Safe
201 Bytes
# pytest configuration to add project root to Python path
import
sys
from
pathlib
import
Path
# Add project root to sys.path
project_root = Path(__file__).parent
sys.path.insert(
0
,
str
(project_root))