From fc80e4b03f24cbbab753cbc4794cc4a6fa9c0ea5 Mon Sep 17 00:00:00 2001 From: Daniel Reeves <31971762+dwreeves@users.noreply.github.com> Date: Fri, 2 Oct 2020 20:56:44 -0400 Subject: [PATCH] Revert "Minor typo fix and doc-string additions" --- README.md | 2 +- tests/test_data.py | 6 ------ 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/README.md b/README.md index 938ad753..e5f7f021 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/tests/test_data.py b/tests/test_data.py index 87cc9c47..40fb712c 100644 --- a/tests/test_data.py +++ b/tests/test_data.py @@ -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] @@ -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]