Skip to content

Commit

Permalink
EditFiles
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderJuestel committed Nov 5, 2023
1 parent 2058bf3 commit 3058a88
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions environment_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,7 @@ dependencies:
- pip
- pip:
- matplotlib
- sphinx_book_theme==0.3.3
- sphinx_copybutton
- nbsphinx

4 changes: 2 additions & 2 deletions test/test_borehole.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ def test_borehole_class():
assert isinstance(borehole.crs_pyproj, pyproj.crs.crs.CRS)
assert borehole.altitude_above_sea_level == 136
assert isinstance(borehole.altitude_above_sea_level, float)
assert borehole.deviation == None
assert borehole.logs == None
assert borehole.deviation is None
assert borehole.logs is None
assert isinstance(borehole.df, pd.DataFrame)


Expand Down

0 comments on commit 3058a88

Please sign in to comment.