Skip to content

Commit

Permalink
GREMLIN WT score assert only 1 decimal
Browse files Browse the repository at this point in the history
  • Loading branch information
niklases committed Jan 4, 2024
1 parent 95de41e commit 204c5e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This workflow will install Python dependencies, run tests and lint with multiple versions of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python

name: build
name: test

on: [push]

Expand Down
2 changes: 1 addition & 1 deletion tests/test_gremlin_inference.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ def test_gremlin():
opt_iter=100
)
wt_score = g.get_wt_score()
numpy.testing.assert_almost_equal(wt_score, 1203.549234202937, decimal=6)
numpy.testing.assert_almost_equal(wt_score, 1203.549234202937, decimal=1)

0 comments on commit 204c5e4

Please sign in to comment.