Skip to content

Commit

Permalink
Removing nose from tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ifilot committed Dec 6, 2023
1 parent 42ce786 commit f73c3af
Show file tree
Hide file tree
Showing 19 changed files with 17 additions and 50 deletions.
3 changes: 1 addition & 2 deletions tests/test_cgf.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import unittest
from pyqint import PyQInt, cgf, gto, Molecule
from pyqint import PyQInt, Molecule
from copy import deepcopy
import numpy as np
import multiprocessing
import os

class TestCGF(unittest.TestCase):
Expand Down
3 changes: 1 addition & 2 deletions tests/test_dipole.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import unittest
from pyqint import PyQInt, cgf, gto, Molecule
from copy import deepcopy
from pyqint import PyQInt, Molecule
import numpy as np
import os

Expand Down
5 changes: 1 addition & 4 deletions tests/test_grad.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
import unittest
from pyqint import PyQInt, cgf, gto, Molecule
from copy import deepcopy
from pyqint import cgf
import numpy as np
import multiprocessing
import os

class TestGrad(unittest.TestCase):
"""
Expand Down
2 changes: 1 addition & 1 deletion tests/test_hf.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import unittest
from pyqint import PyQInt, cgf, gto, Molecule, HF
from pyqint import Molecule, HF
import numpy as np

class TestHF(unittest.TestCase):
Expand Down
5 changes: 1 addition & 4 deletions tests/test_hf_deriv.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
import unittest
from pyqint import PyQInt, cgf, gto, Molecule, HF
from pyqint import Molecule, HF
from copy import deepcopy
import numpy as np
import multiprocessing
import os
from nose.tools import nottest

class TestHFDeriv(unittest.TestCase):

Expand Down
6 changes: 1 addition & 5 deletions tests/test_hf_molecules.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
import unittest
from pyqint import PyQInt, cgf, gto, Molecule, HF
from copy import deepcopy
from pyqint import Molecule, HF
import numpy as np
import multiprocessing
import os
from nose.tools import nottest

class TestHFMolecules(unittest.TestCase):

Expand Down
6 changes: 1 addition & 5 deletions tests/test_hf_molecules_charged.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
import unittest
from pyqint import PyQInt, cgf, gto, Molecule, HF, GeometryOptimization
from copy import deepcopy
from pyqint import Molecule, GeometryOptimization
import numpy as np
import multiprocessing
import os
from nose.tools import nottest

class TestHFMoleculeCharged(unittest.TestCase):

Expand Down
1 change: 0 additions & 1 deletion tests/test_integrals_openmp.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import numpy as np
import multiprocessing
import os
from nose.tools import nottest

class TestIntegralsOpenMP(unittest.TestCase):

Expand Down
3 changes: 1 addition & 2 deletions tests/test_kinetic.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import unittest
from pyqint import PyQInt, cgf, gto, Molecule
from copy import deepcopy
from pyqint import PyQInt, gto, Molecule
import numpy as np

class TestKinetic(unittest.TestCase):
Expand Down
6 changes: 1 addition & 5 deletions tests/test_molecule_order.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
import unittest
from pyqint import PyQInt, cgf, gto, Molecule, HF
from copy import deepcopy
from pyqint import Molecule, HF
import numpy as np
import multiprocessing
import os
from nose.tools import nottest

class TestMoleculeOrder(unittest.TestCase):

Expand Down
3 changes: 1 addition & 2 deletions tests/test_nuclear.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import unittest
from pyqint import PyQInt, cgf, gto, Molecule
from copy import deepcopy
from pyqint import PyQInt, gto, Molecule
import numpy as np

class TestNuclear(unittest.TestCase):
Expand Down
3 changes: 1 addition & 2 deletions tests/test_nuclear_deriv.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import unittest
from pyqint import PyQInt, cgf, gto, Molecule
from pyqint import PyQInt, Molecule
from copy import deepcopy
import numpy as np
import multiprocessing
import os

class TestNuclearDeriv(unittest.TestCase):
Expand Down
3 changes: 1 addition & 2 deletions tests/test_overlap.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import unittest
from pyqint import PyQInt, cgf, gto, Molecule
from copy import deepcopy
from pyqint import PyQInt, gto, Molecule
import numpy as np

class TestOverlap(unittest.TestCase):
Expand Down
2 changes: 1 addition & 1 deletion tests/test_overlap_deriv.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import unittest
from pyqint import PyQInt, cgf, gto, Molecule
from pyqint import PyQInt, Molecule
from copy import deepcopy
import numpy as np

Expand Down
3 changes: 1 addition & 2 deletions tests/test_plot_data.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import unittest
from pyqint import PyQInt, cgf, gto, Molecule
from copy import deepcopy
from pyqint import PyQInt, Molecule
import numpy as np
import os

Expand Down
3 changes: 1 addition & 2 deletions tests/test_repulsion.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import unittest
from pyqint import PyQInt, cgf, gto, Molecule
from copy import deepcopy
from pyqint import PyQInt, gto, Molecule
import numpy as np

class TestRepulsion(unittest.TestCase):
Expand Down
2 changes: 1 addition & 1 deletion tests/test_repulsion_deriv.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import unittest
from pyqint import PyQInt, cgf, gto, Molecule
from pyqint import PyQInt, gto, Molecule
from copy import deepcopy
import numpy as np

Expand Down
3 changes: 0 additions & 3 deletions tests/test_str.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
from nose.tools import nottest
import pyqint
from pyqint import PyQInt, Molecule
import numpy as np
import multiprocessing
import os

class TestString(unittest.TestCase):

Expand Down
5 changes: 1 addition & 4 deletions tests/test_tolerance.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
import unittest
from pyqint import PyQInt, cgf, gto, Molecule, HF
from copy import deepcopy
from pyqint import Molecule, HF
import numpy as np
import multiprocessing
import os

class TestHF(unittest.TestCase):

Expand Down

0 comments on commit f73c3af

Please sign in to comment.