Skip to content

Commit

Permalink
TST #14 timezone testing should be local only
Browse files Browse the repository at this point in the history
  • Loading branch information
prjemian committed Dec 11, 2024
1 parent 4371048 commit 03ae84a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions apsbss/tests/test_bss_is.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,10 @@ def test_IS_BeamtimeRequest():
assert info["Proposal Title"] == btr.title
assert info["Proposal PUP"] == 57504
assert "capillary gas flow detector system;" in info["Equipment"]
assert info["Start time"] == "2022-05-24 08:00:00-05:00"
assert info["End time"] == "2022-10-01 00:00:00-05:00"
if is_aps_workstation():
# timezones are different in github CI testing
assert info["Start time"] == "2022-05-24 08:00:00-05:00"
assert info["End time"] == "2022-10-01 00:00:00-05:00"
assert info["Users"] == list(map(str, btr._users)) # [str(u) for u in btr._users]

assert btr.pi == str(user)
Expand Down

0 comments on commit 03ae84a

Please sign in to comment.