-
Notifications
You must be signed in to change notification settings - Fork 14
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
Extend CovarianceEstimation.cov #122
Conversation
This should be done via REQUIRES.jl, same as we do Tracker. |
Codecov Report
@@ Coverage Diff @@
## master #122 +/- ##
==========================================
- Coverage 88.88% 83.55% -5.34%
==========================================
Files 9 9
Lines 315 298 -17
==========================================
- Hits 280 249 -31
- Misses 35 49 +14
Continue to review full report at Codecov.
|
ah, interesting - thanks! |
I've been getting the following warning but can't seem to figure out why. I'm ┌ Warning: Package NamedDims does not have CovarianceEstimation in its dependencies:
│ - If you have NamedDims checked out for development and have
│ added CovarianceEstimation as a dependency but haven't updated your primary
│ environment's manifest file, try `Pkg.resolve()`.
│ - Otherwise you may need to report an issue with NamedDims
└ Loading CovarianceEstimation into NamedDims from project dependency, future warnings for NamedDims are suppressed.
Test Summary: | Pass Broken Total
NamedDims.jl | 896 3 899
Testing NamedDims tests passed |
I found this: So you can either add a or delete the line and do
|
FWIW, I'm not sure I like using Requires.jl for this. If the |
OK, I am sold, lets extend it directly for now |
I'd be willing to take the minor performance hit if Requires.jl#83 was addressed. |
For now let's just add a direct dependency, and change it later. |
rebased in #174 |
Closes #120