def test_Symbolic_joblib(): x, y = make_regression(n_features=2, n_informative=1, n_targets=1) yhat = Symbolic(n_jobs=-1, max_nfev=1, lambda_=1).fit(x, y).predict(x) assert yhat.shape == y.shape