reconnect moved files to git repo

This commit is contained in:
root
2025-08-01 04:33:03 -04:00
commit 5d3c35492d
23190 changed files with 4750716 additions and 0 deletions

View File

@ -0,0 +1 @@
# -*- coding: utf-8 -*-

View File

@ -0,0 +1,15 @@
# -*- coding: utf-8 -*-
from pmdarima.__check_build import raise_build_error
import pytest
def test_raise_build_error():
try:
# Raise a value error to pass into the raise_build_error
# to assert it turns it into an ImportError
raise ValueError("this is a dummy err msg")
except ValueError as v:
with pytest.raises(ImportError):
raise_build_error(v)