Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ After you run the script for your respective OS, it will ask you if you want to

After that, it will ask if you have the vault password. If you do, enter it here. If not, you can skip this.

Note that the website will _not_ work without either the vault password or offline mode turned on; you must do one or the other.
Note that the website will _not_ without either the vault password or offline mode turned on; you must do one or the other.

Next it will ask you to for the postgres password that you exported earlier. If you are in online mode, you can skip this as you do in the password section.

Expand Down
6 changes: 0 additions & 6 deletions tests/test_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@


def test_hobolink_data_is_recent(app):
"""
Tests Hobolink data is recent (within 2 hours)
"""
with app.app_context():
df = get_live_hobolink_data()
last_timestamp = df['time'].iloc[-1]
Expand All @@ -19,9 +16,6 @@ def test_hobolink_data_is_recent(app):


def test_usgs_data_is_recent(app):
"""
Tests USGS data is recent (within 2 hours)
"""
with app.app_context():
df = get_live_usgs_data()
last_timestamp = df['time'].iloc[-1]
Expand Down