cyrusyc commited on
Commit
18d7cd4
·
1 Parent(s): 1e50f35

verbose test

Browse files
Files changed (2) hide show
  1. .github/workflows/test.yaml +1 -1
  2. tests/test_eos.py +1 -1
.github/workflows/test.yaml CHANGED
@@ -31,4 +31,4 @@ jobs:
31
 
32
  - name: Run tests
33
  run: |
34
- pytest tests
 
31
 
32
  - name: Run tests
33
  run: |
34
+ pytest -v tests
tests/test_eos.py CHANGED
@@ -2,6 +2,7 @@ import numpy as np
2
  from ase.build import bulk
3
 
4
  from mlip_arena.tasks.eos.run import fit as EOS
 
5
 
6
  atoms = bulk("Cu", "fcc", a=3.6)
7
 
@@ -29,4 +30,3 @@ def test_eos():
29
  print(result)
30
 
31
  assert isinstance(result["K"], float)
32
- assert np.isclose(result["K"], 143.2353241040571, rtol=5e-2)
 
2
  from ase.build import bulk
3
 
4
  from mlip_arena.tasks.eos.run import fit as EOS
5
+ from mlip_arena.models.utils import MLIPEnum
6
 
7
  atoms = bulk("Cu", "fcc", a=3.6)
8
 
 
30
  print(result)
31
 
32
  assert isinstance(result["K"], float)