Issue349 new imas reflectometer profile#350
Conversation
…hey remain operational even without install
Codecov Report
@@ Coverage Diff @@
## devel #350 +/- ##
==========================================
- Coverage 39.65% 39.58% -0.08%
==========================================
Files 81 81
Lines 24355 24363 +8
==========================================
- Hits 9659 9644 -15
- Misses 14696 14719 +23
Continue to review full report at Codecov.
|
| # tofu | ||
| # test if in a tofu git repo | ||
| _HERE = os.path.abspath(os.path.dirname(__file__)) | ||
| _HERE = os.path.dirname(os.path.dirname(_HERE)) |
There was a problem hiding this comment.
where is _HERE first defined ?
There was a problem hiding this comment.
Here we are taking _HERE as the directory of the module:
_HERE = os.path.abspath(os.path.dirname(__file__))
and then we go 2 parents directories up:
_HERE = os.path.dirname(os.path.dirname(_HERE))
That's because tofuplot and tofucalc were moved from the root directory down to tofu/scripts
There was a problem hiding this comment.
yes sorry, somehow i didn't see the line above (twice)
| # tofu | ||
| # test if in a tofu git repo | ||
| _HERE = os.path.abspath(os.path.dirname(__file__)) | ||
| _HERE = os.path.dirname(os.path.dirname(_HERE)) |
Main changes: