File tree Expand file tree Collapse file tree 2 files changed +6
-8
lines changed Expand file tree Collapse file tree 2 files changed +6
-8
lines changed Original file line number Diff line number Diff line change 1
1
import os
2
- from pathlib import Path
3
2
import sys
3
+ from pathlib import Path
4
4
5
5
import pytest
6
6
14
14
15
15
# TODO: Compare differently on MACOS
16
16
17
+
17
18
@pytest .mark .skipif (
18
- sys .platform == "darwin" ,
19
- reason = "Test work but have to compare diffently"
19
+ sys .platform == "darwin" , reason = "Test work but have to compare diffently"
20
20
)
21
21
def test_to_clapeyron ():
22
22
with open (path_db / "molarmass.csv" , mode = "r" ) as f :
@@ -71,8 +71,7 @@ def test_to_clapeyron():
71
71
72
72
73
73
@pytest .mark .skipif (
74
- sys .platform == "darwin" ,
75
- reason = "Test work but have to compare diffently"
74
+ sys .platform == "darwin" , reason = "Test work but have to compare diffently"
76
75
)
77
76
def test_to_clapeyron_batch_name ():
78
77
with open (path_db / "molarmass.csv" , mode = "r" ) as f :
@@ -130,8 +129,7 @@ def test_to_clapeyron_batch_name():
130
129
131
130
132
131
@pytest .mark .skipif (
133
- sys .platform == "darwin" ,
134
- reason = "Test work but have to compare diffently"
132
+ sys .platform == "darwin" , reason = "Test work but have to compare diffently"
135
133
)
136
134
def test_molar_mass_csv ():
137
135
limonene = Groups ("CC1=CCC(CC1)C(=C)C" , "smiles" )
Original file line number Diff line number Diff line change 72
72
commands =
73
73
coverage erase
74
74
pytest tests/ --cov =ugropy/ --cov-append --cov-report =term-missing
75
- coverage report --fail-under =95 -m
75
+ coverage report --fail-under =100 -m
You can’t perform that action at this time.
0 commit comments