Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

revert transition tests #103

Merged
merged 1 commit into from
Jul 25, 2024
Merged
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
11 changes: 4 additions & 7 deletions test/trajactories/transition.jl
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,8 @@
@test ensemble.success_rate ≈ 1.0
@test ensemble.t_trans ≈ 4.493941793363376 atol = 1e-2
# SEED is different on github
if ensemble.t_res ≈ 5299.98
@test length(ensemble.times) == 11
@test ensemble.t_res ≈ 5299.98 atol = 1e-1
else
@test length(ensemble.times) == 10
@test ensemble.t_res ≈ 4953.88 atol = 1e-1
end
# SEED doesn;t work on github
@test length(ensemble.times) == 11 broken=true
@test ensemble.t_res ≈ 5299.98 broken=true

Comment on lines +25 to +27
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[JuliaFormatter] reported by reviewdog 🐶

Suggested change
@test length(ensemble.times) == 11 broken=true
@test ensemble.t_res 5299.98 broken=true
@test length(ensemble.times) == 11 broken = true
@test ensemble.t_res 5299.98 broken = true

end
Loading