-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Failing tests #775
Comments
Hi @Rossco8, First, thanks for all the help and the contributions you have recently made. I will address and get to them shortly. 😎 Yes, I have come across similar failing tests asserting the incorrect data type, Series or DataFrame. These should be addressed in the upcoming development update including the indicators you have listed. Before we do any more work, let me get this updated development pushed this week and then we can tackle issues and fixes more in sync. 😎 |
Hi @Rossco8 Just updated the development branch. Let me know if you still get those fails. KJ |
Hi @twopirllc yes looks like the tests are now fixed on the development branch. Except my PR for the PVI indicator fix is failing. Any suggestions why? I updated the tests in |
I think we can close this no? I am not getting test errors on my end nor GA actions on my PRs. |
Yep @twopirllc happy to clsoe this one |
I'm having a look at the 3 tests that are failing.
Looks like the pandas-ta version of these indicators return a Dataframe, the ta-lib returns a Series, so the
pdt.assert_series_equal(result, expected, check_names=False)
is throwing an error.Is it an acceptable fix to these 3 tests to extract the relevant series from the pandas-ta result and pass that to
assert_series_equal
. For exampleIf so, I'll submit a PR
The text was updated successfully, but these errors were encountered: