Skip to content

Commit 1fa53fc

Browse files
style error
1 parent 102fe96 commit 1fa53fc

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

tests/writers/test_to_clapeyron.py

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import os
2-
from pathlib import Path
32
import sys
3+
from pathlib import Path
44

55
import pytest
66

@@ -14,9 +14,9 @@
1414

1515
# TODO: Compare differently on MACOS
1616

17+
1718
@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"
2020
)
2121
def test_to_clapeyron():
2222
with open(path_db / "molarmass.csv", mode="r") as f:
@@ -71,8 +71,7 @@ def test_to_clapeyron():
7171

7272

7373
@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"
7675
)
7776
def test_to_clapeyron_batch_name():
7877
with open(path_db / "molarmass.csv", mode="r") as f:
@@ -130,8 +129,7 @@ def test_to_clapeyron_batch_name():
130129

131130

132131
@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"
135133
)
136134
def test_molar_mass_csv():
137135
limonene = Groups("CC1=CCC(CC1)C(=C)C", "smiles")

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,4 +72,4 @@ deps =
7272
commands =
7373
coverage erase
7474
pytest tests/ --cov=ugropy/ --cov-append --cov-report=term-missing
75-
coverage report --fail-under=95 -m
75+
coverage report --fail-under=100 -m

0 commit comments

Comments
 (0)