Skip to content

Commit

Permalink
Merge pull request #127 from CIROH-UA/fix_tz
Browse files Browse the repository at this point in the history
fix tz in tests
  • Loading branch information
JordanLaserGit authored Sep 24, 2024
2 parents d779e42 + cba0711 commit f5fc29e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion forcingprocessor/tests/test_forcingprocessor.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@
from datetime import datetime
from forcingprocessor.processor import prep_ngen_data
from forcingprocessor.nwm_filenames_generator import generate_nwmfiles
import pytz as tz

date = datetime.now()
date = datetime.now(tz.timezone('US/Eastern'))
date = date.strftime('%Y%m%d')
hourminute = '0000'
test_dir = Path(__file__).parent
Expand Down

0 comments on commit f5fc29e

Please sign in to comment.