Skip to content

Commit

Permalink
Removing OpenMP tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ifilot committed Dec 6, 2023
1 parent f73c3af commit 0b94d34
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions tests/test_str.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import unittest
from nose.tools import nottest
import pyqint
from pyqint import PyQInt, Molecule

Expand Down Expand Up @@ -36,19 +35,5 @@ def test_version(self):
self.assertTrue(strver[1].isnumeric())
self.assertTrue(strver[2].isnumeric())

@nottest
def test_compiler_info(self):
"""
Test automatic integral evaluation for hydrogen molecule
"""
# construct integrator object
integrator = PyQInt()

compiler_info = integrator.get_compile_info()
self.assertTrue(len(compiler_info["compiler_version"]) > 4)
self.assertTrue(len(compiler_info["compile_date"]) > 10)
self.assertTrue(len(compiler_info["compile_time"]) > 4)
self.assertTrue(len(compiler_info["openmp_version"]) > 2)

if __name__ == '__main__':
unittest.main()

0 comments on commit 0b94d34

Please sign in to comment.