Spaces:
Running
Running
enable eos test
Browse files- tests/test_eos.py +0 -6
tests/test_eos.py
CHANGED
@@ -1,6 +1,3 @@
|
|
1 |
-
|
2 |
-
import sys
|
3 |
-
|
4 |
import pytest
|
5 |
from ase.build import bulk
|
6 |
|
@@ -11,9 +8,6 @@ atoms = bulk("Cu", "fcc", a=3.6)
|
|
11 |
|
12 |
|
13 |
@pytest.mark.parametrize("model", [MLIPEnum["MACE-MP(M)"]])
|
14 |
-
@pytest.mark.skipif(
|
15 |
-
tuple(sys.version_info)[:2] != (3, 11), reason="requires Python 3.11 to use prefect"
|
16 |
-
)
|
17 |
def test_eos(model: MLIPEnum):
|
18 |
"""
|
19 |
Test EOS prefect workflow with a simple cubic lattice.
|
|
|
|
|
|
|
|
|
1 |
import pytest
|
2 |
from ase.build import bulk
|
3 |
|
|
|
8 |
|
9 |
|
10 |
@pytest.mark.parametrize("model", [MLIPEnum["MACE-MP(M)"]])
|
|
|
|
|
|
|
11 |
def test_eos(model: MLIPEnum):
|
12 |
"""
|
13 |
Test EOS prefect workflow with a simple cubic lattice.
|