Skip to content

Commit

Permalink
handle ligpargen not found
Browse files Browse the repository at this point in the history
  • Loading branch information
htz1992213 committed Jan 23, 2024
1 parent 88403e4 commit 8a08153
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/test_forcefield.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@
import pytest

from mdgo.forcefield.mdgoligpargen import *
from mdgo.forcefield.aqueous import *
try:
from mdgo.forcefield.aqueous import *
except ModuleNotFoundError:
pass

test_dir = os.path.join(os.path.dirname(os.path.abspath(__file__)), "test_files")

Expand Down

0 comments on commit 8a08153

Please sign in to comment.